Skip to content

Commit

Permalink
Change package to semantic versioning and indicate stable
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Dec 28, 2021
1 parent 34c8614 commit 1b862c3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
24 changes: 18 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
### kwx 0.1.8 (April 29, 2021)
# Changelog

kwx tries to follow [semantic versioning](https://semver.org/), a MAJOR.MINOR.PATCH version where increments are made of the:

- MAJOR version when we make incompatible API changes
- MINOR version when we add functionality in a backwards compatible manner
- PATCH version when we make backwards compatible bug fixes

# kwx 1.0.0 (December 28th, 2021)

- Release switches kwx over to [semantic versioning](https://semver.org/) and indicates that it is stable

# kwx 0.1.8 (April 29th, 2021)

Changes include:

Expand All @@ -7,7 +19,7 @@ Changes include:
- An alert for users when the corpus size is to small for the number of topics was added
- An import error for pyLDAvis was fixed

### kwx 0.1.7.3 (March 30, 2021)
# kwx 0.1.7.3 (March 30th, 2021)

Changes include:

Expand All @@ -19,7 +31,7 @@ Changes include:
- More extensive contributing guidelines
- Tests now use random seeds and are thus more robust

### kwx 0.1.5 (March 15, 2021)
# kwx 0.1.5 (March 15th, 2021)

Changes include:

Expand All @@ -30,19 +42,19 @@ Changes include:
- The user has greater control over the cleaning process
- Reformatting of the code to make the process more clear

### kwx 0.1.0 (Feb 17, 2021)
# kwx 0.1.0 (Feb 17th, 2021)

First stable release of kwx

Additions include:
Changes include:

- Full documentation of the package
- Virtual environment files
- Bug fixes
- Extensive testing of all modules with GH Actions and Codecov
- Code of conduct and contribution guidelines

### kwx 0.0.2.2 (Jan 31, 2021)
# kwx 0.0.2.2 (Jan 31st, 2021)

The minimum viable product of kwx:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = "kwx developers"

# The full version, including alpha/beta/rc tags
release = "0.1.8.3"
release = "1.0.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
name="kwx",
packages=find_packages(where="src"),
package_dir={"": "src"},
version="0.1.8.3",
version="1.0.0",
author="Andrew Tavis McAllister",
author_email="andrew.t.mcallister@gmail.com",
classifiers=[
Expand Down

0 comments on commit 1b862c3

Please sign in to comment.