Skip to content

Commit

Permalink
[v1.0.4] Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Diapolo10 committed Nov 2, 2023
1 parent 744b409 commit 17a66d0
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 35 deletions.
37 changes: 22 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,35 +50,42 @@ Lorem Ipsum dolor sit amet.
<!--
_______________________________________________________________________________
## [1.0.3] - 2023-10-03
Updated dependencies, moved source code to `src`, made Ruff rules stricter,
and fixed outdated `Makefile`.
## [1.0.4] - 2023-11-02
### Added
- Added new rules for Ruff
- Added hash support for the `Date` class
Updated dependencies, and updated Tox configuration to fix coverage
report generation.
### Changed
- Moved the source code files under `src` to better match accepted best
practices
- Updated outdated links in `CHANGELOG.md`
- Updated dependencies
- Updated localisation files
### Fixed
- Fixed `Makefile`'s linting (it was still using `pyproject-flake8`
instead of Ruff)
- Various linter fixes
- `README.md` had an old version number for Python, this is now fixed
- Coverage report generation via Tox was broken, this update
fixes that by changing how Tox is configured.
-->

_______________________________________________________________________________

## [1.0.4] - 2023-11-02

Updated dependencies, and updated Tox configuration to fix coverage
report generation.

### Changed

- Updated dependencies
- Updated localisation files

### Fixed

- Coverage report generation via Tox was broken, this update
fixes that by changing how Tox is configured.

_______________________________________________________________________________

## [1.0.3] - 2023-10-03

Updated dependencies, moved source code to `src`, made Ruff rules stricter,
Expand Down
26 changes: 13 additions & 13 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ omit = [


[tool.poetry]
name = "unit_testing"
version = "1.0.3"
name = "unit-testing"
version = "1.0.4"
description = "An example project for showcasing unit testing."

packages = [
Expand Down Expand Up @@ -52,7 +52,7 @@ python = "^3.11.0"


[tool.poetry.group.dev.dependencies]
mypy = "^1.1.1"
mypy = "^1.6.1"


[tool.poetry.group.linters]
Expand All @@ -68,10 +68,10 @@ optional = true


[tool.poetry.group.tests.dependencies]
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
tox = "^4.4.8"
tox-gh-actions = "^3.1.0"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
tox = "^4.11.3"
tox-gh-actions = "^3.1.3"


[tool.poetry.urls]
Expand Down Expand Up @@ -193,6 +193,7 @@ ban-relative-imports = "all"
legacy_tox_ini = """
[tox]
envlist = py311, pypy3
skip_missing_interpreters = true
[gh-actions]
python =
Expand Down

0 comments on commit 17a66d0

Please sign in to comment.