Skip to content

Commit

Permalink
Bump to version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jachris committed Aug 17, 2017
1 parent b163fdb commit 4cfe39a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]


## [0.2.0] - 2017-08-17
### Added
- Decorator to `core.cache()` function results
- New generic rule `misc.run()`
Expand All @@ -29,4 +32,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

Initial version.

[Unreleased]: https://github.com/jachris/cook/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/jachris/cook/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/jachris/cook/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion cook/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from .rules import rule, publish, deposit, task
from .system import build, temporary, intermediate

version = (0, 1, 0)
version = (0, 2, 0)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

setuptools.setup(
name='cook',
version='0.1.0',
version=version,
description='desc',
long_description='long_desc',
url='https://getcook.org/',
author='koehlja',
author='jachris',
packages=['cook', 'cook.core'],
entry_points={
'console_scripts': ['cook = cook.__main__:main']
Expand Down

0 comments on commit 4cfe39a

Please sign in to comment.