Skip to content

Commit

Permalink
Generate changelog for version 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobi-De committed Mar 8, 2025
1 parent 9070a45 commit cf28960
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 8 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]

### 🚀 Features

- Add process name to systemd service
- Add fujin version info
- Set system as the default secrets adapter
- Add system secret reader

### 🐛 Bug Fixes

- Env content parse logic

### 🚜 Refactor

- Rename env_content to env

### 📚 Documentation

- Apply a more consitent writing style

### ⚙️ Miscellaneous Tasks

- Specify source package to avoid failing build backend

## [0.10.0] - 2024-11-24

### 🚀 Features
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = [

[project]
name = "fujin-cli"
version = "0.10.0"
version = "0.12.0"
description = "Get your project up and running in a few minutes on your own vps."
readme = "README.md"
keywords = [
Expand Down Expand Up @@ -152,7 +152,7 @@ lint.isort.required-imports = [
lint.pyupgrade.keep-runtime-typing = true

[tool.bumpversion]
current_version = "0.10.0"
current_version = "0.12.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = [
"{major}.{minor}.{patch}",
Expand All @@ -178,8 +178,8 @@ replace = 'version = "{new_version}"'

[[tool.bumpversion.files]]
filename = "src/fujin/__init__.py"
replace = '__version__="{new_version}"'
search = '__version__="{current_version}"'
replace = '__version__ = "{new_version}"'
search = '__version__ = "{current_version}"'

[tool.mypy]
check_untyped_defs = true
Expand Down
2 changes: 1 addition & 1 deletion src/fujin/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.0"
__version__ = "0.12.0"
7 changes: 4 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cf28960

Please sign in to comment.