From 607857c99704a7628a554c23bd74cb43c2c7cc6a Mon Sep 17 00:00:00 2001 From: Tobias Burgherr Date: Wed, 22 Oct 2025 19:21:42 +0200 Subject: [PATCH] Release 0.0.4 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 17 +++++++++++++++++ pyproject.toml | 2 +- src/immichporter/__init__.py | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6939671..c2002d7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.3 +current_version = 0.0.4 commit = False tag = False allow_dirty = True diff --git a/CHANGELOG.md b/CHANGELOG.md index d1b7f6a..2196894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ All notable changes to this project will be documented in this file. The format is based on [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). +## [0.0.4] - 2025-10-22 + +#### 🚀 Features +- Add delete tag command ([#19](https://github.com/burgdev/immichporter/pull/19)) +- Auto install playwright ([#18](https://github.com/burgdev/immichporter/pull/18)) +- Add information if photos are saved in gphotos ([#14](https://github.com/burgdev/immichporter/pull/14)) +- Add `saved_to_your_photos` property for gphotos ([#13](https://github.com/burgdev/immichporter/pull/13)) + +#### 📝 Documentation +- Add cli documentation ([#22](https://github.com/burgdev/immichporter/pull/22)) + +#### 🌀 Others +- Add type hints ([#17](https://github.com/burgdev/immichporter/pull/17)) +- Use [just](https://github.com/casey/just) as task manager (replace invoke) ([#16](https://github.com/burgdev/immichporter/pull/16)) + +[0.0.4]: https://github.com/burgdev/immichporter/compare/v0.0.3..v0.0.4 + ## [0.0.3] - 2025-10-16 #### 🚀 Features diff --git a/pyproject.toml b/pyproject.toml index e0151fe..7d83d99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "immichporter" -version = "0.0.3" +version = "0.0.4" description = "Import photos from various sources to Immich" readme = "README.md" requires-python = ">=3.11" diff --git a/src/immichporter/__init__.py b/src/immichporter/__init__.py index 33c6841..8147368 100644 --- a/src/immichporter/__init__.py +++ b/src/immichporter/__init__.py @@ -1,3 +1,3 @@ """Immichporter - Import photos from various sources to Immich.""" -__version__ = "0.0.3" +__version__ = "0.0.4"