Skip to content
Closed
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
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
- name: Calculate next version
id: next_version
run: |
# Use npm version to calculate the next version without modifying files
# Use npm version to calculate the next version without modifying files
CURRENT_VERSION=$(node -p "require('./package.json').version")
NEW_VERSION=$(npm version ${{ github.event.inputs.version }} --no-git-tag-version)
NEW_VERSION=$(npx semver $CURRENT_VERSION -i ${{ github.event.inputs.version }})

# Restore package.json to avoid dirty state
git checkout package.json package-lock.json 2>/dev/null || true
Expand Down Expand Up @@ -106,6 +106,7 @@ jobs:
name: ${{ steps.bump.outputs.version }}
body: ${{ steps.changelog.outputs.notes }}
files: ${{ steps.pack.outputs.tgz }}
target_commitish: ${{ github.sha }}
fail_on_unmatched_files: true
draft: false
prerelease: false
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- We fixed an issue that could cause iOS apps to restart repeatedly after an OTA update.

## [v0.3.4] - 2026-06-22

- We fixed an issue that could cause iOS apps to restart repeatedly after an OTA update.

## [v0.3.3] - 2026-06-03

- We fixed an issue that could cause Android apps to restart repeatedly after an OTA update.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mendix-native",
"version": "0.3.3",
"version": "0.3.4",
"description": "Mendix native mobile package",
"main": "./lib/module/index.js",
"types": "./lib/typescript/src/index.d.ts",
Expand Down
Loading