diff --git a/.age.toml b/.age.toml index 3935117..9d36035 100644 --- a/.age.toml +++ b/.age.toml @@ -1,4 +1,4 @@ -current_version = "0.4.0" +current_version = "0.5.0" [[files]] path = "oembedpy/__init__.py" diff --git a/.github/release-body.md b/.github/release-body.md index 2144f1f..95d26e6 100644 --- a/.github/release-body.md +++ b/.github/release-body.md @@ -1,2 +1,2 @@ -- Changelog is https://github.com/attakei/oEmbedPy/blob/v0.4.0/CHANGES.rst -- You can source diff to https://github.com/attakei/oembedPy/compare/v0.3.2..v0.4.0 +- Changelog is https://github.com/attakei/oEmbedPy/blob/v0.5.0/CHANGES.rst +- You can source diff to https://github.com/attakei/oembedPy/compare/v0.4.0..v0.5.0 diff --git a/CHANGES.rst b/CHANGES.rst index dddbee2..0799fb5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,21 @@ Change logs =========== +v0.5.0 +====== + +:date: 2024-04-21 (JST) + +Features +-------- + +* Follow redirects when fetch embed content (`#1 `)_) + +Others +------ + +* Use Ruff for formatting and linting + v0.4.0 ====== diff --git a/oembedpy/__init__.py b/oembedpy/__init__.py index c552e58..c30add6 100644 --- a/oembedpy/__init__.py +++ b/oembedpy/__init__.py @@ -1,3 +1,3 @@ """oEmbed client for Python.""" -__version__ = "0.4.0" +__version__ = "0.5.0"