Skip to content

Commit

Permalink
Merge branch 'issue/version-bump' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
inmantaci committed Jun 18, 2021
2 parents d6363bc + f628a78 commit bce8ff9
Show file tree
Hide file tree
Showing 10 changed files with 171 additions and 86 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.2
current_version = 1.6.0
tag = False
commit = False

Expand Down
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 99
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# v 1.5.2 (2021-04-09)
# v 1.6.0 (2021-06-18)
Changes in this release:
- remove usage of internal compiler api
- Added the ability to assert the expected 'change' of a deploy
- Compiled models are logged (debug level), with line numbers (#199)
- Export mypy types

# v 1.5.0 (2021-03-26)
Changes in this release:
Expand Down Expand Up @@ -74,4 +76,4 @@ Changes in this release:
# V 0.6.0
Changes in this release:
- added log serialization to deploy, to better mimic agent behavior
- added dryrun
- added dryrun
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include *.md
include pytest_inmanta/module/*
include pytest_inmanta/py.typed
2 changes: 1 addition & 1 deletion examples/testhandler/tests/test_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_resource(project):
unittest::Resource(name="res", desired_value="y")
"""
)
project.deploy_resource("unittest::Resource")
project.deploy_resource("unittest::Resource", change=const.Change.updated)
value = project.unittest_resource_get(name="res")
assert value["desired_value"] == "y"

Expand Down
Loading

0 comments on commit bce8ff9

Please sign in to comment.