diff --git a/docs/changelog.md b/docs/changelog.md index d48bd630..3aaed70b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -8,7 +8,7 @@ hide: All notable changes to this project will be documented in this file. -[Click here to see the unreleased changes.](https://github.com/rendercv/rendercv/compare/v2.5...HEAD) +[Click here to see the unreleased changes.](https://github.com/rendercv/rendercv/compare/v2.6...HEAD) +## [2.6] - December 23, 2025 + +> **Full Changelog**: [v2.5...v2.6] + +### Added + +- Bluesky has been added as a social network type ([#560](https://github.com/rendercv/rendercv/issues/560)). +- Built-in locale defaults for 2 additional languages have been added: Danish and Indonesian ([#556](https://github.com/rendercv/rendercv/issues/556), [#567](https://github.com/rendercv/rendercv/issues/567)). + +### Fixed + +- Unicode corruption in sample YAML name generation has been fixed ([#570](https://github.com/rendercv/rendercv/issues/570)). +- Typst syntax is no longer included in Markdown and HTML outputs ([#563](https://github.com/rendercv/rendercv/issues/563), [#564](https://github.com/rendercv/rendercv/issues/564)). + ## [2.5] - December 13, 2025 > **Full Changelog**: [v2.4...v2.5] @@ -582,6 +596,7 @@ RenderCV has transitioned from using $\LaTeX$ to Typst. RenderCV is now much fas The first release of RenderCV. +[v2.5...v2.6]: https://github.com/rendercv/rendercv/compare/v2.5...v2.6 [v2.4...v2.5]: https://github.com/rendercv/rendercv/compare/v2.4...v2.5 [v2.3...v2.4]: https://github.com/rendercv/rendercv/compare/v2.3...v2.4 [v2.2...v2.3]: https://github.com/rendercv/rendercv/compare/v2.2...v2.3 @@ -615,6 +630,7 @@ The first release of RenderCV. [v0.3...v0.4]: https://github.com/rendercv/rendercv/compare/v0.3...v0.4 [v0.2...v0.3]: https://github.com/rendercv/rendercv/compare/v0.2...v0.3 [v0.1...v0.2]: https://github.com/rendercv/rendercv/compare/v0.1...v0.2 +[2.6]: https://github.com/rendercv/rendercv/releases/tag/v2.6 [2.5]: https://github.com/rendercv/rendercv/releases/tag/v2.5 [2.4]: https://github.com/rendercv/rendercv/releases/tag/v2.4 [2.3]: https://github.com/rendercv/rendercv/releases/tag/v2.3 diff --git a/pyproject.toml b/pyproject.toml index e76aecff..240c69a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ build-backend = "uv_build" # Build-backend object for building RenderCV [project] # Metadata about RenderCV. name = 'rendercv' -version = '2.5' +version = '2.6' description = 'Typst-based CV/resume generator' authors = [{ name = 'Sina Atalay', email = 'dev@atalay.biz' }] license = "MIT" diff --git a/src/rendercv/__init__.py b/src/rendercv/__init__.py index c2ebe71f..6d721db0 100644 --- a/src/rendercv/__init__.py +++ b/src/rendercv/__init__.py @@ -1,9 +1,7 @@ import warnings -__version__ = "2.5" -__description__ = ( - "Write your CV or resume as YAML and get PDF. Built for academics and engineers." -) +__version__ = "2.6" +__description__ = "Typst-based CV/resume generator for academics and engineers." warnings.filterwarnings("ignore") # Ignore Pydantic warnings