-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd11971
commit 9bce6c2
Showing
5 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
CHANGELOG | ||
========= | ||
|
||
0.0.1 - XX mmmmmm 2019 | ||
---------------------- | ||
0.1.0 - 18 May 2019 | ||
------------------- | ||
|
||
- Initial dump of code | ||
- Initial dump of code. | ||
- Defines the public API for lookups. | ||
- Provides fixed lookup: members are defined at instantiation time and never change. | ||
- Provides singleton lookup: only one member defined at instantiation time and never change. | ||
- Provides empty lookup: a special lookup with nothing in it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include *.md LICENSE | ||
include Pipfile.lock | ||
include Pipfile Pipfile.lock | ||
recursive-include tests *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
__summary__ = 'DCI lookups in Python (inspired by Netbeans Platform Lookups API)' | ||
__uri__ = 'https://github.com/AxelVoitier/lookups' | ||
|
||
__version__ = '0.0.1' | ||
__version__ = '0.1.0' | ||
|
||
__author__ = 'Axel Voitier' | ||
__email__ = '[email protected]' | ||
|