Skip to content

Commit

Permalink
New version: 0.9.2 → 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartMacKay committed Feb 11, 2025
1 parent 3255879 commit c57a7d0
Show file tree
Hide file tree
Showing 6 changed files with 134 additions and 115 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0

Latest
------

0.10.0 (2025-02-11)
------------------
* Split the load_csv management command into separate commands for loading eBird
Basic Dataset, load_dataset, and MyEBirdData, load_mydata.

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ abstract:
authors:
- name: Stuart MacKay
cff-version: 1.2.0
date-released: 2025-02-07
date-released: 2025-02-11
keywords:
- checklists
- Django
Expand All @@ -14,4 +14,4 @@ license: MIT License
message: If you use this software, please cite it using the metadata from this file.
repository-code: "https://github.com/StuartMacKay/ebird-checklists"
title: eBird Checklists
version: 0.9.2
version: 0.10.0
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "eBird Checklists"
copyright = "2024, Stuart MacKay"
author = "Stuart MacKay"
release = "0.9.2"
release = "0.10.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["setuptools >= 61.0"]

[project]
name = "ebird-checklists"
version = "0.9.2"
version = "0.10.0"
description = "eBird Checklists is a reusable Django app for loading data from eBird into a database."
keywords = ["checklists", "Django", "eBird", "models"]
license = { file = "LICENSE" }
Expand Down Expand Up @@ -60,7 +60,7 @@ dev-dependencies = [
]

[tool.bumpversion]
current_version = "0.9.2"
current_version = "0.10.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
ignore_missing_version = false
Expand Down
2 changes: 1 addition & 1 deletion src/ebird/checklists/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.2"
__version__ = "0.10.0"
Loading

0 comments on commit c57a7d0

Please sign in to comment.