Skip to content

Commit

Permalink
0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yuma-m committed Nov 24, 2019
1 parent c4b002e commit 419b7b7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
29 changes: 15 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Forthcoming

## v0.4.1
- Add qualities.
- `sus`, `maj7`, `maj9`, `m6`, `madd9`
- `7b5`, `7#5`, `7b9`, `7#9`
Expand All @@ -9,52 +10,52 @@
- Support quality alias comparison.
- `maj7 == M7`

## 0.4.0
## v0.4.0
- Add Chord.from_note_index method.
- Support chord creation using note index in a scale.
- Contributor: @kwadwo00

## 0.3.2
## v0.3.2
- Make `QUALITY_DICT` values immutable.

## 0.3.1
## v0.3.1
- Raise TypeError in `__eq__` methods.

## 0.3.0
## v0.3.0
- Implement `__eq__` method for Quality.
- Fix `__eq__` method of Chord to support comparison between sharped and flatted chords.

## 0.2.9
## v0.2.9
- Implement `__eq__`, `__ne__`, `__setitem__` methods for ChordProgression.
- Implement `__eq__` method for Chord.

## 0.2.7
## v0.2.7
- Handle base note in Chord.components
- Contributor: @mstuttgart

## 0.2.6
## v0.2.6
- Enable setting scale on Chord.transpose
- Contributor: @jgvictores

## 0.2.5
## v0.2.5
- Refactor some classes not to modify instance variables.
- Update docstrings.

## 0.2.3
## v0.2.3
- Support 5th(power) chord.
- Add a utility to find chords from notes.

## 0.2.2
## v0.2.2
- Implement `__repr__` function.

## 0.2.1
## v0.2.1
- Support `__add__`, `__len__` and `__getitem__` functions in ChordProgression class.

## 0.2.0
## v0.2.0
- Add a class to handle chord progressions.

## 0.1.1
## v0.1.1
- Display flat or sharp by the scale.

## 0.1.0
## v0.1.0
- Add a function to get component notes of chord.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from setuptools import setup, find_packages
version = '0.4.0'
version = '0.4.1'

setup(
name='pychord',
Expand Down

0 comments on commit 419b7b7

Please sign in to comment.