Skip to content

Commit 82172e3

Browse files
committed
chore: Bump version
Going to version 1 due to breaking changes in removing Python 3.8 functionality.
1 parent e71a12e commit 82172e3

File tree

5 files changed

+2
-8
lines changed

5 files changed

+2
-8
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
include CHANGELOG.rst
21
include LICENSE.txt
32
include README.rst
43
include requirements/base.in

docs/changelog.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Contents:
2121
testing
2222
internationalization
2323
modules
24-
changelog
2524
decisions
2625
references/index
2726

platform_plugin_aspects/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
import os
66
from pathlib import Path
77

8-
__version__ = "0.11.7"
8+
__version__ = "1.0.0"
99

1010
ROOT_DIRECTORY = Path(os.path.dirname(os.path.abspath(__file__)))

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,12 @@ def is_requirement(line):
142142
README = open(
143143
os.path.join(os.path.dirname(__file__), "README.rst"), encoding="utf8"
144144
).read()
145-
CHANGELOG = open(
146-
os.path.join(os.path.dirname(__file__), "CHANGELOG.rst"), encoding="utf8"
147-
).read()
148145

149146
setup(
150147
name="platform-plugin-aspects",
151148
version=VERSION,
152149
description="""Aspects plugins for edx-platform""",
153-
long_description=README + "\n\n" + CHANGELOG,
150+
long_description=README,
154151
author="Open edX Project",
155152
author_email="oscm@openedx.org",
156153
url="https://github.com/openedx/platform-plugin-aspects",

0 commit comments

Comments
 (0)