Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yuma-m committed Sep 19, 2021
1 parent 75febc1 commit 59505a1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
## Forthcoming

- Drop compatibility for Python 2.7 and 3.5
- Refactor whole library to optimize for Python 3.x
## v1.0.0

- Drop compatibility for Python 2.7 and 3.5.
- Refactor whole library to optimize for Python 3.x.
- Add type hints.
- Use f-strings.
- Rename `note_to_chord` to `find_chords_from_notes`.
- Use tuple instead of list for `Quality.components`.

## v0.6.3

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sys

from setuptools import setup, find_packages
version = '0.6.3'
version = '1.0.0'

CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 6)
Expand All @@ -15,7 +15,7 @@
version=version,
description="A library to handle musical chords in python.",
classifiers=[
"Development Status :: 5 - Production/Stable"
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
Expand Down

0 comments on commit 59505a1

Please sign in to comment.