Skip to content

Commit

Permalink
Create release
Browse files Browse the repository at this point in the history
  • Loading branch information
mwermelinger committed Aug 15, 2024
1 parent e973117 commit 29e3ae0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ This project does *not* adhere to [Semantic Versioning](https://semver.org).

<!-- Per release: Added / Changed / Deprecated / Removed / Fixed / Security -->

## [Unreleased](https://github.com/dsa-ou/allowed/compare/v1.4.0...HEAD)
## [Unreleased](https://github.com/dsa-ou/allowed/compare/v1.5.0...HEAD)
These changes are in the GitHub repository but not on [PyPI](https://pypi.org/project/allowed).

<!-- Nothing yet. -->
Nothing yet.

## [1.5.0](https://github.com/dsa-ou/allowed/compare/v1.4.0...v1.5.0) - 2024-08-15
### Added
- configuration file `m269-24j.json`

Expand Down
2 changes: 1 addition & 1 deletion allowed/allowed.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Check that Python and notebook files only use the allowed constructs."""

__version__ = "1.4.0" # same as in pyproject.toml
__version__ = "1.5.0" # same as in pyproject.toml

import argparse
import ast
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tool.poetry]
name = "allowed"
version = "1.4.0" # as in allowed.py
version = "1.5.0" # as in allowed.py
description = "Check if a program only uses a subset of the Python language."
authors = ["Michel Wermelinger <michel.wermelinger@open.ac.uk>"]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/dsa-ou/allowed"
homepage = "https://dsa-ou.github.io/allowed/"
homepage = "https://dsa-ou.github.io/allowed"
keywords = ["education"]
classifiers = [
"Intended Audience :: Education",
Expand All @@ -16,6 +16,9 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.poetry.urls]
"Changelog" = "https://github.com/dsa-ou/allowed/blob/main/CHANGELOG.md"

[tool.poetry.dependencies]
python = "^3.10"

Expand Down

0 comments on commit 29e3ae0

Please sign in to comment.