Skip to content

Commit

Permalink
Version 5.0.1. Fix canvas item thread crash.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeyer committed Nov 14, 2024
1 parent 4011b55 commit 2fa38c1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% set win_exe = "NionUILauncher" %}
{% set summary = "A native launcher for Nion UI apps." %}

{% set version = "5.0.0" %}
{% set version = "5.0.1" %}

{% set name_u = name|replace('-', '_') %}

Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog (nionui-tool)
=======================

5.0.1 (2024-11-14)
------------------
- Fix possible crash when closing canvas items.

5.0.0 (2024-10-26)
------------------
- Eliminate dependence on NumPy for build.
Expand Down
2 changes: 1 addition & 1 deletion launcher/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ option(USE_CONSOLE "Enable console" ON)
set(APP_NAME "NionUILauncher")

# app version
set(APP_VERSION "5.0.0")
set(APP_VERSION "5.0.1")

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/build)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
tool_id = "nionui"
launcher = "NionUILauncher"

version = "5.0.0"
version = "5.0.1"


def package_files(directory: str, prefix: str, prefix_drop: int) -> list[typing.Tuple[str, list[str]]]:
Expand Down

0 comments on commit 2fa38c1

Please sign in to comment.