diff --git a/CHANGELOG.md b/CHANGELOG.md index c94b4e5..a466c1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,40 @@ # Changelog + All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v2.1.0 - 2022-09-22 + +### [2.1.0](https://github.com/eduNEXT/tvm/compare/v2.0.1...v2.1.0) (2022-09-22) + +#### Features + +- init command creates new project with global tvm or latest tvm if machine lacks of one ([0136699](https://github.com/eduNEXT/tvm/commit/01366993b88434ed36565bb02464b23e45e8c265)) + +#### Styles + +- solve styling issues ([5f14fe6](https://github.com/eduNEXT/tvm/commit/5f14fe61e5183bfc77ea5e266bcb5aadd5a734e6)) + +#### Code Refactoring + +- fixed logic style ([8d204d1](https://github.com/eduNEXT/tvm/commit/8d204d175c572cd5183362022017dbec9882eccd)) + +#### Documentation + +- correct quickstart command tvm project init ([c2b9545](https://github.com/eduNEXT/tvm/commit/c2b9545ac144b3c65d62a4c8eed06717b93cab38)) +- making the default install the main branch ([7c2ef2a](https://github.com/eduNEXT/tvm/commit/7c2ef2a734a1f6bea4e9a1048115feb4b031265b)) + ## [2.0.1] - 2022-08-25 ### Changed - Add virtualenv to requirements + ## [2.0.0] - 2022-08-10 ### Changed - **BREAKING CHANGE:** Migrate environment manager project init command to clean architecture. - **BREAKING CHANGE:** Migrate version manager commands to clean architecture. - - - - - - diff --git a/setup.cfg b/setup.cfg index 20c190d..d5f27f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1 +current_version = 2.1.0 commit = False tag = False diff --git a/tvm/__init__.py b/tvm/__init__.py index c228d8c..c39c380 100644 --- a/tvm/__init__.py +++ b/tvm/__init__.py @@ -1,3 +1,3 @@ """Helps you keep your cool when creating dozens of open edX and eduNEXT environments.""" -__version__ = '2.0.1' +__version__ = '2.1.0'