Skip to content

Commit

Permalink
New version: 0.0.0 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartMacKay committed Dec 28, 2024
1 parent fa4b039 commit 583f182
Show file tree
Hide file tree
Showing 5 changed files with 476 additions and 67 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ All notable changes to this project will be documented in this file.
The format is inspired by `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.

Unreleased
-------------------
[0.1.0] - 2024-12-28
--------------------
Added
^^^^^
Initial release with loaders and models for the database and a Django Admin module
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: 2024-12-01
date-released: 2024-12-28
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.0.0
version: 0.1.0
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.0.0"
version = "0.1.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 @@ -56,7 +56,7 @@ dev-dependencies = [
]

[tool.bumpversion]
current_version = "0.0.0"
current_version = "0.1.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.0.0"
__version__ = "0.1.0"
Loading

0 comments on commit 583f182

Please sign in to comment.