Skip to content

Commit 0abf4ae

Browse files
committed
chore: prep for v1.3.0
1 parent 51ccec4 commit 0abf4ae

12 files changed

Lines changed: 22 additions & 22 deletions

File tree

desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ode-desktop",
33
"private": true,
4-
"version": "1.2.1",
4+
"version": "1.3.0",
55
"packageManager": "pnpm@10.33.2",
66
"type": "module",
77
"scripts": {

desktop/src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odedesktop"
3-
version = "1.2.1"
3+
version = "1.3.0"
44
description = "ODE Desktop"
55
authors = ["OpenDataEnsemble.org"]
66
edition = "2024"

desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "ODE Desktop",
4-
"version": "1.2.1",
4+
"version": "1.3.0",
55
"identifier": "org.opendataensemble.custodian",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

desktop/src/lib/synkConstants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/** Must match Synkronus OpenAPI `x-ode-version` (semver). */
2-
export const SYNKRONUS_CLIENT_VERSION = '1.2.1';
2+
export const SYNKRONUS_CLIENT_VERSION = '1.3.0';

formulus/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ android {
103103
applicationId = "org.opendataensemble.formulus"
104104
minSdk = rootProject.ext.minSdkVersion
105105
targetSdk = rootProject.ext.targetSdkVersion
106-
versionCode = 25
107-
versionName = "1.2.1"
106+
versionCode = 35
107+
versionName = "1.3.0"
108108

109109
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", (findProperty("newArchEnabled") ?: "false").toString()
110110

formulus/ios/Formulus.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@
318318
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
319319
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
320320
CLANG_ENABLE_MODULES = YES;
321-
CURRENT_PROJECT_VERSION = 24;
321+
CURRENT_PROJECT_VERSION = 35;
322322
DEVELOPMENT_TEAM = 57WY3GA5K7;
323323
ENABLE_BITCODE = NO;
324324
INFOPLIST_FILE = Formulus/Info.plist;
@@ -327,7 +327,7 @@
327327
"$(inherited)",
328328
"@executable_path/Frameworks",
329329
);
330-
MARKETING_VERSION = 1.2.1;
330+
MARKETING_VERSION = 1.3.0;
331331
OTHER_LDFLAGS = (
332332
"$(inherited)",
333333
"-ObjC",
@@ -353,15 +353,15 @@
353353
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
354354
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
355355
CLANG_ENABLE_MODULES = YES;
356-
CURRENT_PROJECT_VERSION = 24;
356+
CURRENT_PROJECT_VERSION = 35;
357357
DEVELOPMENT_TEAM = 57WY3GA5K7;
358358
INFOPLIST_FILE = Formulus/Info.plist;
359359
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
360360
LD_RUNPATH_SEARCH_PATHS = (
361361
"$(inherited)",
362362
"@executable_path/Frameworks",
363363
);
364-
MARKETING_VERSION = 1.2.1;
364+
MARKETING_VERSION = 1.3.0;
365365
OTHER_LDFLAGS = (
366366
"$(inherited)",
367367
"-ObjC",

formulus/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

formulus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "formulus-app",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"packageManager": "pnpm@10.33.2",
55
"type": "module",
66
"private": true,

synkronus-cli/internal/cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
var (
1313
// Version is the CLI version, set during build
14-
Version = "1.2.1"
14+
Version = "1.3.0"
1515
// BuildDate is the date when the CLI was built
1616
BuildDate = "unknown"
1717
// CommitHash is the git commit hash

0 commit comments

Comments
 (0)