Skip to content

Commit

Permalink
Ready for version 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelVoitier committed May 18, 2019
1 parent fd11971 commit 9bce6c2
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 6 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
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.
3 changes: 2 additions & 1 deletion MANIFEST.in
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
2 changes: 2 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ pytest = "*"
flake8 = "*"
mypy = "*"
flake8-mypy = "*"
check-manifest = "*"

[packages]

[scripts]
qa = 'flake8'
tests = 'py.test -x tests'
build = 'python setup.py sdist bdist_wheel'
clean = 'rm -Rf build dist lookups.egg-info .pytest_cache'
17 changes: 16 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lookups/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]'
Expand Down

0 comments on commit 9bce6c2

Please sign in to comment.