Skip to content

Commit 8ab4541

Browse files
author
y-p
committed
Merge pull request #2879 from stephenwlin/release-fixup
RLS: fixup RELEASE.rst links
2 parents c123680 + 49e123f commit 8ab4541

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

RELEASE.rst

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,6 @@ pandas 0.10.1
247247
.. _GH2698: https://github.com/pydata/pandas/issues/2698
248248
.. _GH2699: https://github.com/pydata/pandas/issues/2699
249249
.. _GH2700: https://github.com/pydata/pandas/issues/2700
250-
.. _GH2694: https://github.com/pydata/pandas/issues/2694
251250
.. _GH2686: https://github.com/pydata/pandas/issues/2686
252251
.. _GH2618: https://github.com/pydata/pandas/issues/2618
253252
.. _GH2592: https://github.com/pydata/pandas/issues/2592
@@ -1389,7 +1388,7 @@ pandas 0.8.0
13891388
- Add ``order`` method to Index classes (GH1028_)
13901389
- Avoid hash table creation in large monotonic hash table indexes (GH1160_)
13911390
- Store time zones in HDFStore (GH1232_)
1392-
- Enable storage of sparse data structures in HDFStore (#85)
1391+
- Enable storage of sparse data structures in HDFStore (GH85_)
13931392
- Enable Series.asof to work with arrays of timestamp inputs
13941393
- Cython implementation of DataFrame.corr speeds up by > 100x (GH1349_, GH1354_)
13951394
- Exclude "nuisance" columns automatically in GroupBy.transform (GH1364_)
@@ -1596,6 +1595,7 @@ pandas 0.8.0
15961595
.. _GH1513: https://github.com/pydata/pandas/issues/1513
15971596
.. _GH1533: https://github.com/pydata/pandas/issues/1533
15981597
.. _GH1547: https://github.com/pydata/pandas/issues/1547
1598+
.. _GH85: https://github.com/pydata/pandas/issues/85
15991599

16001600

16011601
pandas 0.7.3
@@ -1719,7 +1719,6 @@ pandas 0.7.2
17191719

17201720
- Add additional tie-breaking methods in DataFrame.rank (GH874_)
17211721
- Add ascending parameter to rank in Series, DataFrame (GH875_)
1722-
- Add coerce_float option to DataFrame.from_records (GH893_)
17231722
- Add sort_columns parameter to allow unsorted plots (GH918_)
17241723
- IPython tab completion on GroupBy objects
17251724

@@ -1741,7 +1740,7 @@ pandas 0.7.2
17411740
- Can select multiple hierarchical groups by passing list of values in .ix
17421741
(GH134_)
17431742
- Add level keyword to ``drop`` for dropping values from a level (GH159_)
1744-
- Add ``coerce_float`` option on DataFrame.from_records (# 893)
1743+
- Add ``coerce_float`` option on DataFrame.from_records (GH893_)
17451744
- Raise exception if passed date_parser fails in ``read_csv``
17461745
- Add ``axis`` option to DataFrame.fillna (GH174_)
17471746
- Fixes to Panel to make it easier to subclass (GH888_)
@@ -1962,7 +1961,7 @@ pandas 0.7.0
19621961
exact matches for the labels are found or if the index is monotonic (for
19631962
range selections)
19641963
- Label-based slicing and sequences of labels can be passed to ``[]`` on a
1965-
Series for both getting and setting (GH #86)
1964+
Series for both getting and setting (GH86_)
19661965
- `[]` operator (``__getitem__`` and ``__setitem__``) will raise KeyError
19671966
with integer indexes when an index is not contained in the index. The prior
19681967
behavior would fall back on position-based indexing if a key was not found
@@ -1994,7 +1993,7 @@ pandas 0.7.0
19941993
- Don't print length by default in Series.to_string, add `length` option (GH
19951994
GH489_)
19961995
- Improve Cython code for multi-groupby to aggregate without having to sort
1997-
the data (GH #93)
1996+
the data (GH93_)
19981997
- Improve MultiIndex reindexing speed by storing tuples in the MultiIndex,
19991998
test for backwards unpickling compatibility
20001999
- Improve column reindexing performance by using specialized Cython take
@@ -2027,7 +2026,7 @@ pandas 0.7.0
20272026
- Improve DataFrame.to_string and console formatting to be more consistent in
20282027
the number of displayed digits (GH395_)
20292028
- Use bottleneck if available for performing NaN-friendly statistical
2030-
operations that it implemented (GH #91)
2029+
operations that it implemented (GH91_)
20312030
- Monkey-patch context to traceback in ``DataFrame.apply`` to indicate which
20322031
row/column the function application failed on (GH614_)
20332032
- Improved ability of read_table and read_clipboard to parse
@@ -2133,7 +2132,7 @@ pandas 0.7.0
21332132
- Use right dropna function for SparseSeries. Return dense Series for NA fill
21342133
value (GH730_)
21352134
- Fix Index.format bug causing incorrectly string-formatted Series with
2136-
datetime indexes (# 726, 758)
2135+
datetime indexes (GH726_, GH758_)
21372136
- Fix errors caused by object dtype arrays passed to ols (GH759_)
21382137
- Fix error where column names lost when passing list of labels to
21392138
DataFrame.__getitem__, (GH662_)
@@ -2303,6 +2302,10 @@ Thanks
23032302
.. _GH764: https://github.com/pydata/pandas/issues/764
23042303
.. _GH770: https://github.com/pydata/pandas/issues/770
23052304
.. _GH771: https://github.com/pydata/pandas/issues/771
2305+
.. _GH758: https://github.com/pydata/pandas/issues/758
2306+
.. _GH86: https://github.com/pydata/pandas/issues/86
2307+
.. _GH91: https://github.com/pydata/pandas/issues/91
2308+
.. _GH93: https://github.com/pydata/pandas/issues/93
23062309

23072310

23082311
pandas 0.6.1
@@ -2492,15 +2495,15 @@ pandas 0.6.0
24922495
- Implement logical (boolean) operators &, |, ^ on DataFrame (GH347_)
24932496
- Add `Series.mad`, mean absolute deviation, matching DataFrame
24942497
- Add `QuarterEnd` DateOffset (GH321_)
2495-
- Add matrix multiplication function `dot` to DataFrame (GH #65)
2498+
- Add matrix multiplication function `dot` to DataFrame (GH65_)
24962499
- Add `orient` option to `Panel.from_dict` to ease creation of mixed-type
24972500
Panels (GH359_, GH301_)
24982501
- Add `DataFrame.from_dict` with similar `orient` option
24992502
- Can now pass list of tuples or list of lists to `DataFrame.from_records`
25002503
for fast conversion to DataFrame (GH357_)
25012504
- Can pass multiple levels to groupby, e.g. `df.groupby(level=[0, 1])` (GH
25022505
GH103_)
2503-
- Can sort by multiple columns in `DataFrame.sort_index` (GH #92, GH362_)
2506+
- Can sort by multiple columns in `DataFrame.sort_index` (GH92_, GH362_)
25042507
- Add fast `get_value` and `put_value` methods to DataFrame and
25052508
micro-performance tweaks (GH360_)
25062509
- Add `cov` instance methods to Series and DataFrame (GH194_, GH362_)
@@ -2705,6 +2708,8 @@ Thanks
27052708
.. _GH405: https://github.com/pydata/pandas/issues/405
27062709
.. _GH408: https://github.com/pydata/pandas/issues/408
27072710
.. _GH416: https://github.com/pydata/pandas/issues/416
2711+
.. _GH65: https://github.com/pydata/pandas/issues/65
2712+
.. _GH92: https://github.com/pydata/pandas/issues/92
27082713

27092714

27102715
pandas 0.5.0

0 commit comments

Comments
 (0)