Skip to content
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 .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
version:
description: 'Version tag (e.g., v1.0.0)'
required: true
default: 'v1.78.0'
default: 'v1.79.0'

jobs:
create-release:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions open-pdf-studio/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion open-pdf-studio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "open-pdf-studio",
"version": "1.78.0",
"version": "1.79.0",
"description": "A free, open-source PDF annotation editor built with Tauri",
"scripts": {
"prepare:native-runtime": "node scripts/native-runtime.mjs",
Expand Down
16 changes: 8 additions & 8 deletions open-pdf-studio/scripts/release-config.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -207,21 +207,21 @@ test('release workflows compile macOS once and retry only the bundle phase', asy
}
});

test('all release metadata targets version 1.78.0', async () => {
test('all release metadata targets version 1.79.0', async () => {
const pkg = await readJson('package.json');
const packageLock = await readJson('package-lock.json');
const config = await readJson('src-tauri/tauri.conf.json');
const cargo = await readFile(path.join(projectDir, 'src-tauri', 'Cargo.toml'), 'utf8');
const release = await readFile(path.join(repoDir, '.github', 'workflows', 'release.yml'), 'utf8');
const cargoLock = await readFile(path.join(repoDir, 'Cargo.lock'), 'utf8');

assert.equal(pkg.version, '1.78.0');
assert.equal(packageLock.version, '1.78.0');
assert.equal(packageLock.packages[''].version, '1.78.0');
assert.equal(config.version, '1.78.0');
assert.match(cargo, /^version = "1\.78\.0"$/m);
assert.match(release, /default: 'v1\.78\.0'/);
assert.match(cargoLock, /name = "open-pdf-studio"\r?\nversion = "1\.78\.0"/);
assert.equal(pkg.version, '1.79.0');
assert.equal(packageLock.version, '1.79.0');
assert.equal(packageLock.packages[''].version, '1.79.0');
assert.equal(config.version, '1.79.0');
assert.match(cargo, /^version = "1\.79\.0"$/m);
assert.match(release, /default: 'v1\.79\.0'/);
assert.match(cargoLock, /name = "open-pdf-studio"\r?\nversion = "1\.79\.0"/);
});

test('development optimization profiles live at the workspace root', async () => {
Expand Down
2 changes: 1 addition & 1 deletion open-pdf-studio/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion open-pdf-studio/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "open-pdf-studio"
version = "1.78.0"
version = "1.79.0"
description = "A free, open-source PDF annotation editor"
authors = ["OpenAEC Foundation"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion open-pdf-studio/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Open PDF Studio",
"version": "1.78.0",
"version": "1.79.0",
"identifier": "org.openaec.openpdfstudio",
"build": {
"frontendDist": "../dist",
Expand Down
Loading