diff --git a/CHANGELOG.md b/CHANGELOG.md index 0361692..19bf0ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/vyperlang/vvm/) +## [0.1.0](https://github.com/vyperlang/vvm/tree/v0.1.0) - 2020-10-07 +### Added +- Support for Python 3.9 +- Cache version information + ## [0.0.2](https://github.com/vyperlang/vvm/tree/v0.0.2) - 2020-08-26 ### Fixed - Ignore `.exe` when handling versions on Windows diff --git a/README.md b/README.md index ee22207..936b11a 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ Vyper version management tool. -**Note**: This project is an early alpha and still under active development. - ## Installation ### via `pip` diff --git a/setup.cfg b/setup.cfg index e17a68f..d3c1249 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.2 +current_version = 0.1.0 [bumpversion:file:setup.py] @@ -23,3 +23,4 @@ use_parentheses = True [tool:pytest] addopts = --cov=vvm --cov-branch --cov-report xml + diff --git a/setup.py b/setup.py index 97c6f3c..c976e38 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="vvm", - version="0.0.2", # don't change this manually, use bumpversion instead + version="0.1.0", # don't change this manually, use bumpversion instead description="Vyper version management tool", long_description_markdown_filename="README.md", author="Ben Hauser",