From e6ec031d15e20b0ea585b7a931b743cc5f45288b Mon Sep 17 00:00:00 2001 From: Michel Wermelinger Date: Sat, 17 Aug 2024 17:46:57 +0100 Subject: [PATCH] Create new version Bump version, update changelog. Added blank line doesn't change generated docs. --- CHANGELOG.md | 6 ++++-- Deepnote/Dockerfile | 2 +- pyproject.toml | 9 ++++++--- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fafa6f..9ee35ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,12 @@ This project does *not* adhere to [Semantic Versioning](https://semver.org). -## [Unreleased](https://github.com/dsa-ou/algoesup/compare/v0.3.0...HEAD) +## [Unreleased](https://github.com/dsa-ou/algoesup/compare/v0.3.1...HEAD) These changes are in the GitHub repository but not on [PyPI](https://pypi.org/project/algoesup). - +Nothing yet. + +## [0.3.1](https://github.com/dsa-ou/algoesup/compare/v0.3.0...v0.3.1) - 2024-08-17 ### Fixed - add blank line before generated Markdown list of issues diff --git a/Deepnote/Dockerfile b/Deepnote/Dockerfile index 2947245..8cb49a3 100644 --- a/Deepnote/Dockerfile +++ b/Deepnote/Dockerfile @@ -1,3 +1,3 @@ FROM python:3.10 -RUN pip install pytype==2024.3.19 ruff==0.3.5 allowed algoesup==0.3 \ No newline at end of file +RUN pip install pytype==2024.3.19 ruff==0.3.5 allowed algoesup==0.3.1 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index f6fda39..46d0d0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "algoesup" -version = "0.3.0" +version = "0.3.1" description = "Algorithmic essay support library" authors = [ "Michel Wermelinger ", @@ -11,8 +11,8 @@ packages = [ ] readme = "src/README.md" license = "BSD-3-Clause" -repository = "https://github.com/dsa-ou/algoesup" -homepage = "https://dsa-ou.github.io/algoesup/" +repository = "https://github.com/dsa-ou/algoesup/" +documentation = "https://dsa-ou.github.io/algoesup/library/" keywords = ["education"] classifiers = [ "Intended Audience :: Education", @@ -22,6 +22,9 @@ classifiers = [ "Operating System :: OS Independent", ] +[tool.poetry.urls] +"Changelog" = "https://github.com/dsa-ou/algoesup/blob/main/CHANGELOG.md" + [tool.poetry.dependencies] python = "^3.10" ipython = "^8.13.1"