Skip to content

Commit

Permalink
Merge pull request #439 from awslabs/version-0-16-0-prep
Browse files Browse the repository at this point in the history
Add 0.16.0 changes
  • Loading branch information
depaolism committed Jul 24, 2023
2 parents 5127636 + e747130 commit 4444f1d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .readthedocs.yaml.off
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# .readthedocs.yaml
# NOTE - Currently set to OFF until issues with RTD integration with MkDocs is resolved.
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with mkdocs
mkdocs:
configuration: mkdocs.yml

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
# python:
# install:
# - requirements: docs/requirements.txt
9 changes: 9 additions & 0 deletions developer_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,12 @@ These instructions document the parts of the repository that need to be updated
### Update Linux and Windows Buildspec files (`testing` folder)

- Add new test cases for the new version

## New Version Release Process (for Maintainers)

To release a new version of RDK...

1. Update `pyproject.toml` with the new version number
2. Update `rdk/__init__.py` with the new version number
3. Locally `git pull origin master` to ensure you have the latest code
4. Locally `git push --tags <new version number>` to create a tagged version, which will kick off the remaining workflows.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
[tool.poetry]
name = "rdk"
version = "0.15.0"
version = "0.16.0"
description = "Rule Development Kit CLI for AWS Config"
authors = [
"AWS RDK Maintainers <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion rdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
#
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

MY_VERSION = "0.15.0"
MY_VERSION = "0.16.0"

0 comments on commit 4444f1d

Please sign in to comment.