Skip to content

Commit 8d6f68e

Browse files
committed
Merge pull request pandas-dev#28 from manahl/add-changelog
Bumped version to 1.6.0, and added changelog
2 parents 0c9f23b + bf3141c commit 8d6f68e

File tree

2 files changed

+40
-2
lines changed

2 files changed

+40
-2
lines changed

CHANGES.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
2+
## Changelog
3+
4+
### 1.6
5+
6+
* Always use the primary cluster node for 'has_symbol()', it's safer
7+
8+
### 1.5
9+
10+
* Bugfixes for timezone handling, now ensures use of non-naive datetimes
11+
* Bugfix for tickstore read missing images
12+
13+
### 1.4
14+
15+
* Improvements to command-line control scripts for users and libraries
16+
* Bugfix for pickling top-level Arctic object
17+
18+
### 1.3
19+
20+
* Allow snapshotting a range of versions in the VersionStore, and
21+
snapshot all versions by default.
22+
23+
### 1.2
24+
25+
* Bugfix for backwards-compatible unpickling of bson-encoded data
26+
* Added switch for enabling parallel lz4 compression
27+
28+
### 1.1
29+
30+
* Added hook for registering auth provider
31+
* Tickstore reads now include all fields when prepending images
32+
* Added 'allow_secondary' argument to VersionStore read methods
33+
34+
### 1.0
35+
36+
* Initial public release

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
try:
2727
import pypandoc
2828
long_description = pypandoc.convert('README.md', 'rst')
29+
changelog = pypandoc.convert('CHANGES.md', 'rst')
2930
except (IOError, ImportError, OSError):
3031
long_description = open('README.md').read()
32+
changelog = open('CHANGES.md').read()
3133

3234

3335
class PyTest(TestCommand):
@@ -73,15 +75,15 @@ def run_tests(self):
7375

7476
setup(
7577
name="arctic",
76-
version="1.5.0",
78+
version="1.6.0",
7779
author="Man AHL Technology",
7880
author_email="[email protected]",
7981
description=("AHL Research Versioned TimeSeries and Tick store"),
8082
license="GPL",
8183
keywords=["ahl", "keyvalue", "tickstore", "mongo", "timeseries", ],
8284
url="https://github.com/manahl/arctic",
8385
packages=find_packages(),
84-
long_description=long_description,
86+
long_description=long_description + changelog,
8587
cmdclass={'test': PyTest},
8688
ext_modules=[compress],
8789
setup_requires=["setuptools_cython",

0 commit comments

Comments
 (0)