Skip to content

Commit

Permalink
Updated release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ypujante committed May 14, 2023
1 parent d79dacd commit 9e0f4f7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/run-tests-macos-action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Run Tests (macOS)

on:
push:
branches: [ "github-actions" ]
push

jobs:
run_tests:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/run-tests-windows-action.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Run Tests (Windows)

on:
push:
branches: [ "github-actions" ]
push

jobs:
run_tests:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Check the [Quickstart](https://jamba.dev/quickstart/) section to getting started
Latest Release
--------------

6.2.1 | 2023-04-27
6.3.0 | 2023-05-14

[Release notes (local)](RELEASE.md)

Expand Down
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Release Notes {#release-notes}

Check the [Requirements](https://jamba.dev/requirements/) documentation for information about which VST3 SDK Jamba supports and how to get it.

## [6.3.0 | 2023-05-14](https://github.com/pongasoft/jamba/tree/v6.3.0)

* Fixed NaN issue with `stringToFloat` by changing its return convention (`0` instead of `NaN`) due to `fast-math` option which assumes that there is no NaN in the code.
* Fixed invalid `version.h` file generated on Windows
* Integrated with GitHub actions in order to do a matrix style testing (which uncovered the 2 previous issues)
* Windows 10 Visual Studio 2019 & 2022
* macOS 11 (Xcode 13.2) & macOS 12 (Xcode 14.2)

## [6.2.1 | 2023-04-27](https://github.com/pongasoft/jamba/tree/v6.2.1)

* Fixes compilation issues with XCode 14+
Expand Down
4 changes: 2 additions & 2 deletions jamba.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ endif()
# Jamba Version - use git to fetch exact tag/version
#------------------------------------------------------------------------
set(JAMBA_MAJOR_VERSION 6)
set(JAMBA_MINOR_VERSION 2)
set(JAMBA_PATCH_VERSION 1)
set(JAMBA_MINOR_VERSION 3)
set(JAMBA_PATCH_VERSION 0)
execute_process(COMMAND git describe --long --dirty --abbrev=10 --tags
RESULT_VARIABLE result
OUTPUT_VARIABLE JAMBA_GIT_VERSION
Expand Down

0 comments on commit 9e0f4f7

Please sign in to comment.