Skip to content

Commit

Permalink
Update changelog and increment version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang committed Dec 24, 2022
1 parent ecbdbbf commit ec79618
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
22 changes: 16 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
1.4.1 - Nov 21, 2022. (sha 396afc17d0ba2f78e0827e6f8319246977994172)
2.0.0 - Dec 24, 2022. (sha b593d5527bce51a7070684569dc8f19aff3d24e0)
--------------------------------------------------------------------
* Add a `tpv dry-run` subcommand by @natefoo (PR #52)
* Simplify TPV by disambiguating terms by @nuwang (PR #58)
* Additional context params by @nuwang (PR #62)
* Use only TPV defined destinations, ignoring job_conf by @nuwang (#PR 63)
* Add support for abstract entities by @nuwang (PR #64)
* Add destination min accepted by @nuwang (PR #67)
* Shared rules inheritance test by @cat-bro (PR #68)
* Update github actions by @nuwang (PR #69)


1.4.1 - Nov 21, 2022. (sha 396afc17d0ba2f78e0827e6f8319246977994172)
--------------------------------------------------------------------
* Avoid deepcopying loader when cloning entities (PR #54)
* Change remaining uses of pyyaml to ruaml.yaml (PR #51)
* Automatic PyPi deployment action (#43)


1.4.0 - Oct 12, 2022. (sha c4a49330a55f02107a9ece4ac84fd74f956f7017)
--------------------------------------------------------------------

* Added support for the execute block to change entity properties
* Added link to TPV shared database.


1.3.0 - Sep 28, 2022. (sha 3e9342622ab8bb2b6b18ef1fd32625e246eec66a)
--------------------------------------------------------------------

* Added tpv format command for prettying and ordering tpv tool lists
* Support for overriding destination name
* Fix some bugs in context variable handling
Expand All @@ -22,7 +33,6 @@

1.2.0 - Jun 15, 2022. (sha 872d200f3bfeb7356ba76bb1ee14134a50608d92)
--------------------------------------------------------------------

* vortex package and cli renamed to tpv for consistency.
* All matching entity regexes are applied, not just the first. Order of application is in the order of definition.
* When a particular entity type is matched, its definitions are cached, so that future lookups are O(1).
Expand All @@ -31,16 +41,16 @@
* Support for global and local context variables that can be referenced in expressions.
* Improved support for complex jobs param types like dicts and lists, which are now recursively evaluated.


1.1.0 - Mar 25, 2022. (sha 0e65d9a6a16bbbfd463031677067e1af9f4dac64)
--------------------------------------------------------------------

* The "match" clause has been deprecated and renamed to "if", for easier readability of rules.
* When no default mapping for a tool exists, choose the first available destination for a simpler initial experience.
* A sample config file has been added to provide a starting point for new TPV users.


1.0.0 - Mar 07, 2022. (sha 2e082a4ec0868e03df1b902562810873421823e5)
--------------------------------------------------------------------

* Initial PyPi release of total-perspective-vortex.
* Basic usage docs and examples.
* 94% test coverage.
2 changes: 1 addition & 1 deletion tpv/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Total Perspective Vortex library setup."""

# Current version of the library
__version__ = "1.4.1"
__version__ = "2.0.0"


def get_version():
Expand Down

0 comments on commit ec79618

Please sign in to comment.