Skip to content

Commit

Permalink
bump(release): v2.5.0 → v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
natelandau committed Jun 25, 2024
1 parent 0a84960 commit 07dbf28
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 6 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## v2.6.0 (2024-06-24)

### Feat

- **campaign**: add roll statistics (#162)
- campaign/character/roll commands must be run in channels (#161)
- attach notes to characters and campaign books (#160)
- **admin**: delete characters from database (#158)

### Fix

- **xp**: restrict xp spend to character channel (#164)
- **campaign**: improve `/campaign view`

### Refactor

- remove campaign channel migration (#159)

## v2.5.0 (2024-06-18)

### Feat
Expand Down
5 changes: 2 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@
- [ ] Notes: Add/Edit/View individual player notes
- [ ] Refactor: Move testable logic out of cogs and to services or db models
- [ ] Statistics: Pull stats based on timeframe
- [ ] Statistics: Track per book stats
- [ ] Statistics: Track per campaign stats
- [ ] Storyteller: Add notes
- [x] Storyteller: Associate storyteller characters with campaigns
- [ ] Tests: Increase coverage
- [x] Campaign: Add books to campaigns. Books contain chapters.
- [x] Campaign: Associate characters with campaigns
Expand All @@ -31,3 +28,5 @@
- [x] Character: rethink inventory
- [x] CharGen: Add edges for hunters
- [x] Refactor: Centralize pagination for long responses
- [x] Statistics: Track per campaign stats
- [x] Storyteller: Associate storyteller characters with campaigns
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
name = "valentina"
readme = "README.md"
repository = "https://github.com/natelandau/valentina"
version = "2.5.0"
version = "2.6.0"

[tool.poetry.scripts] # https://python-poetry.org/docs/pyproject/#scripts
valentina = "valentina.main:app"
Expand Down Expand Up @@ -63,7 +63,7 @@
changelog_merge_prerelease = true
tag_format = "v$version"
update_changelog_on_bump = true
version = "2.5.0"
version = "2.6.0"
version_files = ["pyproject.toml:version", "src/valentina/__version__.py:__version__"]

[tool.coverage.report] # https://coverage.readthedocs.io/en/latest/config.html#report
Expand Down
2 changes: 1 addition & 1 deletion src/valentina/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Valentina version."""

__version__ = "2.5.0"
__version__ = "2.6.0"

0 comments on commit 07dbf28

Please sign in to comment.