Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): 🤖 release 2.28.1 #640

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.28.0"
".": "2.28.1"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [2.28.1](https://github.com/saturday06/VRM-Addon-for-Blender/compare/v2.28.0...v2.28.1) (2024-11-21)


### 🐞 Bug Fixes

* incorrect mtoon1 to mtoon0 color conversion ([774457d](https://github.com/saturday06/VRM-Addon-for-Blender/commit/774457d075bc7ce6f9b93c06888182f633c93dc8))
* remove unnecessary .blend link ([d55bb32](https://github.com/saturday06/VRM-Addon-for-Blender/commit/d55bb322dee5aae67638642d2790ae23c3a41a9e))

## [2.28.0](https://github.com/saturday06/VRM-Addon-for-Blender/compare/v2.27.0...v2.28.0) (2024-11-14)


Expand Down
2 changes: 1 addition & 1 deletion extension.patch
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ index 46364128..088fe7c3 100644
- "version": (
- 2, # x-release-please-major
- 28, # x-release-please-minor
- 0, # x-release-please-patch
- 1, # x-release-please-patch
- ),
- "location": "File > Import-Export",
- "description": "Import-Edit-Export VRM",
Expand Down
2 changes: 1 addition & 1 deletion src/io_scene_vrm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"version": (
2, # x-release-please-major
28, # x-release-please-minor
0, # x-release-please-patch
1, # x-release-please-patch
),
"location": "File > Import-Export",
"description": "Import-Edit-Export VRM",
Expand Down
2 changes: 1 addition & 1 deletion src/io_scene_vrm/blender_manifest.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
schema_version = "1.0.0"

id = "vrm"
version = "2.28.0"
version = "2.28.1"
name = "VRM format"
tagline = "VRM import, export and editing capabilities"
maintainer = "Isamu Mogi <dyob@lunaport.net>"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_version(self) -> None:
(
2, # x-release-please-major
28, # x-release-please-minor
0, # x-release-please-patch
1, # x-release-please-patch
),
)

Expand Down