Skip to content

Commit

Permalink
Add dependencies to dynamic in pyproject.toml
Browse files Browse the repository at this point in the history
Release `v2.8`
  • Loading branch information
dormant-user committed Oct 22, 2023
1 parent c66d052 commit 226af1e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Commit History
==============

0.5.0 (10/22/2023)
------------------
- Add dependencies to dynamic in pyproject.toml
- Release `v2.8`

0.4.9 (10/22/2023)
------------------
- Get version number from bare ``gitverse`` command
Expand Down
2 changes: 1 addition & 1 deletion gitverse/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "2.7.1"
version = "2.8"
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "gitverse"
dynamic = ["version"]
dynamic = ["version", "dependencies"]
description = "Get GitHub's release notes or commit history and format it into `reStructuredText`/`Markdown` documents."
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "[email protected]" }]
Expand All @@ -21,11 +21,11 @@ requires-python = ">=3.8"
packages = ["gitverse", "gitverse.models", "gitverse.utils"]

[tool.setuptools.dynamic]
version = {attr = "gitverse.version"}
dependencies = {file = ["gitverse/requirements.txt"]}
version = { attr = "gitverse.version" }
dependencies = { file = ["gitverse/requirements.txt"] }

[build-system]
requires = ["setuptools", "wheel"]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project.optional-dependencies]
Expand Down
4 changes: 4 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release Notes
=============

2.8 (10/22/2023)
----------------
- Bug fix when installing dependencies

2.7.1 (10/22/2023)
------------------
- Include version number option for bare ``gitverse`` command
Expand Down

0 comments on commit 226af1e

Please sign in to comment.