Skip to content

Commit

Permalink
Create release
Browse files Browse the repository at this point in the history
  • Loading branch information
mwermelinger committed Sep 10, 2024
1 parent 4c893f6 commit cf1a9c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 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.5.0...HEAD)
## [Unreleased](https://github.com/dsa-ou/allowed/compare/v1.5.1...HEAD)
These changes are in the GitHub repository but not on [PyPI](https://pypi.org/project/allowed).

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

## [1.5.1](https://github.com/dsa-ou/allowed/compare/v1.5.0...v1.5.1) - 2024-09-10
### Fixed
- option `-m` doesn't crash if Python 3.10 isn't installed

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.5.0" # same as in pyproject.toml
__version__ = "1.5.1" # same as in pyproject.toml

import argparse
import ast
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "allowed"
version = "1.5.0" # as in allowed.py
version = "1.5.1" # as in allowed.py
description = "Check if a program only uses a subset of the Python language."
authors = ["Michel Wermelinger <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit cf1a9c6

Please sign in to comment.