Auto status change to "Under Review"
Show More
@@ -14,7 +14,7 b' The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).' | |||
|
14 | 14 | <!-- ### Fixed --> |
|
15 | 15 | |
|
16 | 16 | |
|
17 |
## |
|
|
17 | ## [2.0.0rc1 - 2019-04-13] | |
|
18 | 18 | ### Changed |
|
19 | 19 | * require Elasticsearch 6.x |
|
20 | 20 | * move data structure to single document per index |
@@ -103,8 +103,3 b' To develop appenlight frontend:' | |||
|
103 | 103 | npm install |
|
104 | 104 | grunt watch |
|
105 | 105 | |
|
106 | ||
|
107 | Tagging release | |
|
108 | =============== | |
|
109 | ||
|
110 | bumpversion --current-version 1.1.1 minor --verbose --tag --commit --dry-run |
@@ -33,9 +33,6 b' def _get_meta_var(name, data, callback_handler=None):' | |||
|
33 | 33 | with open(os.path.join(here, "src", "appenlight", "__init__.py"), "r") as _meta: |
|
34 | 34 | _metadata = _meta.read() |
|
35 | 35 | |
|
36 | with open(os.path.join(here, "VERSION"), "r") as _meta_version: | |
|
37 | __version__ = _meta_version.read().strip() | |
|
38 | ||
|
39 | 36 | __license__ = _get_meta_var("__license__", _metadata) |
|
40 | 37 | __author__ = _get_meta_var("__author__", _metadata) |
|
41 | 38 | __url__ = _get_meta_var("__url__", _metadata) |
@@ -45,18 +42,20 b' found_packages.append("appenlight.migrations.versions")' | |||
|
45 | 42 | setup( |
|
46 | 43 | name="appenlight", |
|
47 | 44 | description="appenlight", |
|
48 |
long_description=README |
|
|
45 | long_description=README, | |
|
49 | 46 | classifiers=[ |
|
50 | 47 | "Programming Language :: Python", |
|
51 | 48 | "Framework :: Pylons", |
|
52 | 49 | "Topic :: Internet :: WWW/HTTP", |
|
53 | 50 | "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", |
|
54 | 51 | ], |
|
55 | version=__version__, | |
|
52 | version='2.0.0rc1', | |
|
56 | 53 | license=__license__, |
|
57 | 54 | author=__author__, |
|
58 | 55 | url=__url__, |
|
59 | keywords="web wsgi bfg pylons pyramid", | |
|
56 | keywords="web wsgi bfg pylons pyramid flask django monitoring apm instrumentation appenlight", | |
|
57 | python_requires=">=3.5", | |
|
58 | long_description_content_type="text/markdown", | |
|
60 | 59 | package_dir={"": "src"}, |
|
61 | 60 | packages=found_packages, |
|
62 | 61 | include_package_data=True, |
|
1 | NO CONTENT: file was removed |
|
1 | NO CONTENT: file was removed |
General Comments 4
Auto status change to "Under Review"
You need to be logged in to leave comments.
Login now