Skip to content

Commit

Permalink
chore(release): 1.44.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan-hm committed Jul 12, 2024
1 parent 2768161 commit 7bfad30
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.44.1](https://github.com/hugemenace/nd/compare/v1.44.0...v1.44.1) (2024-07-12)


### Bug Fixes

* fix Blender version polling ([2768161](https://github.com/hugemenace/nd/commit/2768161bc0d210e84a569b0e46d5658395424d36))

## [1.44.0](https://github.com/hugemenace/nd/compare/v1.43.1...v1.44.0) (2024-07-12)


Expand Down
6 changes: 3 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
bl_info = {
"name": "HugeMenace — ND",
"author": "HugeMenace",
"version": (1, 44, 0),
"version": (1, 44, 1),
"blender": (4, 0, 0),
"location": "N Panel, Shift + 2",
"description": "Non-destructive operations, tools, and generators.",
Expand Down Expand Up @@ -598,7 +598,7 @@ def draw_keymap(self, box):
row = column.row()
row.prop(self, pref)

version = (1, 44, 0)
version = (1, 44, 1)

name = "ND v%s" % ('.'.join([str(v) for v in version]))
wm = bpy.context.window_manager
Expand Down Expand Up @@ -655,7 +655,7 @@ def register():
registerable.reload()
registerable.register()

version = (1, 44, 0)
version = (1, 44, 1)
prefs = lib.preferences.get_preferences()

if not lib.addons.is_extension() and prefs.enable_update_check:
Expand Down
2 changes: 1 addition & 1 deletion blender_manifest.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
schema_version = "1.0.0"

id = "nd"
version = "1.44.0"
version = "1.44.1"
name = "ND"
tagline = "Non-Destructive Modeling Toolkit"
maintainer = "HugeMenace <[email protected]>"
Expand Down

0 comments on commit 7bfad30

Please sign in to comment.