From d89803817f83486214a4262e9b21e894272d5730 Mon Sep 17 00:00:00 2001 From: lpm0073 Date: Mon, 10 Apr 2023 12:06:24 -0600 Subject: [PATCH] bump to 0.1.3 --- CHANGELOG.md | 10 +++++++--- README.md | 4 ++-- __about__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 887011e..d21d80c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [0.1.2] (2022-04-09) +## [0.1.3] (2023-04-10) + +- scaffold urls.py + +## [0.1.2] (2023-04-09) - cleanup README documentation and PyPi homepage -## [0.1.1] (2022-04-09) +## [0.1.1] (2023-04-09) - cleanup README documentation and PyPi homepage -## [0.1.0] (2022-04-07) +## [0.1.0] (2023-04-07) - initial release diff --git a/README.md b/README.md index 711742d..2e8782e 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ See [Installing extra xblocks and requirements](https://docs.tutor.overhang.io/c tutor config save # to ensure that tutor's root folder system has been created # OPTION 1: install as a PyPi package -echo "cookiecutter-openedx-plugin>=0.1.2" >> "$(tutor config printroot)/env/build/openedx/requirements/private.txt" +echo "cookiecutter-openedx-plugin>=0.1.3" >> "$(tutor config printroot)/env/build/openedx/requirements/private.txt" # OPTION 2: install as an editable requirement echo "-e git+https://github.com/cookiecutter-openedx/cookiecutter-openedx-plugin.git" >> "$(tutor config printroot)/env/build/openedx/requirements/private.txt" @@ -42,7 +42,7 @@ Add the following to your [Cookiecutter Github Actions Build workflow](https://g uses: openedx-actions/tutor-plugin-build-openedx-add-requirement with: pip-package: cookiecutter-openedx-plugin - pip-package-version: ">=0.1.2" + pip-package-version: ">=0.1.3" ``` ### Documentation diff --git a/__about__.py b/__about__.py index 9c2f221..b2c04bb 100644 --- a/__about__.py +++ b/__about__.py @@ -3,7 +3,7 @@ # Increment this version number to trigger a new release. See # CHANGELOG.md for information on the versioning scheme. -__version__ = "0.1.2" +__version__ = "0.1.3" # The version suffix will be appended to the actual version, separated by a # dash. Use this suffix to differentiate between the actual released version and diff --git a/pyproject.toml b/pyproject.toml index 73b60d1..03826dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ build-backend = "setuptools.build_meta:__legacy__" #------------------------------------------------------------------------------ [project] name = "cookiecutter-openedx-plugin" -version = "0.1.2" +version = "0.1.3" authors = [ { name="Lawrence McDaniel", email="lpm0073@gmail.com" } ]