Skip to content

Commit

Permalink
Add manage_public_output_collection to AccessLevelAction enum (#93)
Browse files Browse the repository at this point in the history
* add manage_public_output_collection to AccessLevelAction

* Bump version: 0.0.20 → 0.0.21
  • Loading branch information
rohitsanj authored Mar 14, 2023
1 parent e3bd93a commit ce26f14
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 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 = 0.0.20
current_version = 0.0.21
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.21] - 2023-03-14
### Added
- Added `manage_public_output_collection` to `AccessLevelAction` enum

## [0.0.20] - 2023-03-01
### Changed
- Upgrade dependencies
Expand Down
2 changes: 1 addition & 1 deletion origami/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.0.20"
version = "0.0.21"
1 change: 1 addition & 0 deletions origami/defs/access_levels.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def _generate_next_value_(name, start, count, last_values):
create_file_version = enum.auto()
create_file_sandbox = enum.auto()
create_parameterized_notebook = enum.auto()
manage_public_output_collection = enum.auto()
rename = enum.auto()

# File job specific actions
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[tool.poetry]
name = "noteable-origami"
version = "0.0.20"
version = "0.0.21"
description = "The Noteable API interface"
authors = ["Matt Seal <[email protected]>"]
maintainers = ["Matt Seal <[email protected]>"]
Expand Down

0 comments on commit ce26f14

Please sign in to comment.