From cc7ec482d8e9ebfb47a9e6be7329cc155f3a8e12 Mon Sep 17 00:00:00 2001 From: Roei Erez Date: Tue, 23 Jan 2024 00:53:59 +0200 Subject: [PATCH] prepare for release 0.2.14 --- libs/Cargo.lock | 4 +- libs/Cargo.toml | 2 +- .../android/build.gradle.production | 2 +- libs/sdk-flutter/ios/breez_sdk.podspec | 2 +- .../ios/breez_sdk.podspec.production | 4 +- libs/sdk-flutter/pubspec.yaml | 2 +- libs/sdk-react-native/example/package.json | 4 +- libs/sdk-react-native/package.json | 302 +++++++++--------- tools/sdk-cli/Cargo.lock | 4 +- tools/sdk-cli/Cargo.toml | 2 +- 10 files changed, 164 insertions(+), 164 deletions(-) diff --git a/libs/Cargo.lock b/libs/Cargo.lock index 347b001b5..e82e5e8c1 100644 --- a/libs/Cargo.lock +++ b/libs/Cargo.lock @@ -512,7 +512,7 @@ dependencies = [ [[package]] name = "breez-sdk-core" -version = "0.2.12" +version = "0.2.14" dependencies = [ "aes", "anyhow", @@ -561,7 +561,7 @@ dependencies = [ [[package]] name = "breez_sdk" -version = "0.2.12" +version = "0.2.14" dependencies = [ "anyhow", "breez-sdk-core", diff --git a/libs/Cargo.toml b/libs/Cargo.toml index 203a587ea..0b86d2bbd 100644 --- a/libs/Cargo.toml +++ b/libs/Cargo.toml @@ -13,7 +13,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.2.12" +version = "0.2.14" [workspace.dependencies] uniffi = "0.23.0" diff --git a/libs/sdk-flutter/android/build.gradle.production b/libs/sdk-flutter/android/build.gradle.production index bba8d711d..21226e929 100644 --- a/libs/sdk-flutter/android/build.gradle.production +++ b/libs/sdk-flutter/android/build.gradle.production @@ -1,5 +1,5 @@ group 'com.breez.breez_sdk' -version '0.2.12' +version '0.2.14' buildscript { ext.kotlin_version = '1.7.10' diff --git a/libs/sdk-flutter/ios/breez_sdk.podspec b/libs/sdk-flutter/ios/breez_sdk.podspec index 91fa23918..37d4b0b94 100644 --- a/libs/sdk-flutter/ios/breez_sdk.podspec +++ b/libs/sdk-flutter/ios/breez_sdk.podspec @@ -2,7 +2,7 @@ # Run `pod lib lint breez_sdk.podspec` to validate before publishing. Pod::Spec.new do |s| s.name = 'breez_sdk' - s.version = '0.2.12' + s.version = '0.2.14' s.summary = 'BreezSDK flutter plugin.' s.description = <<-DESC BreezSDK flutter plugin. diff --git a/libs/sdk-flutter/ios/breez_sdk.podspec.production b/libs/sdk-flutter/ios/breez_sdk.podspec.production index 6201c202e..1e462a5ac 100644 --- a/libs/sdk-flutter/ios/breez_sdk.podspec.production +++ b/libs/sdk-flutter/ios/breez_sdk.podspec.production @@ -2,7 +2,7 @@ # Run `pod lib lint breez_sdk.podspec` to validate before publishing. Pod::Spec.new do |s| s.name = 'breez_sdk' - s.version = '0.2.12' + s.version = '0.2.14' s.summary = 'BreezSDK flutter plugin.' s.description = <<-DESC BreezSDK flutter plugin. @@ -20,5 +20,5 @@ Pod::Spec.new do |s| # Flutter.framework does not contain a i386 slice. s.pod_target_xcconfig = {'STRIP_STYLE' => 'non-global', 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } s.swift_version = '5.0' - s.dependency "breez_sdkFFI", "0.2.12" + s.dependency "breez_sdkFFI", "0.2.14" end diff --git a/libs/sdk-flutter/pubspec.yaml b/libs/sdk-flutter/pubspec.yaml index fd817b133..ce98e9bb2 100644 --- a/libs/sdk-flutter/pubspec.yaml +++ b/libs/sdk-flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: breez_sdk description: A new flutter plugin project. -version: 0.2.12 +version: 0.2.14 publish_to: none environment: diff --git a/libs/sdk-react-native/example/package.json b/libs/sdk-react-native/example/package.json index 40fe21e2c..64892ca16 100644 --- a/libs/sdk-react-native/example/package.json +++ b/libs/sdk-react-native/example/package.json @@ -13,7 +13,7 @@ "rebuild": "rm -rf node_modules && yarn && yarn pods" }, "dependencies": { - "@breeztech/react-native-breez-sdk": "0.2.12", + "@breeztech/react-native-breez-sdk": "0.2.14", "@dreson4/react-native-quick-bip39": "^0.0.5", "react": "18.1.0", "react-native": "0.70.6", @@ -36,4 +36,4 @@ "jest": { "preset": "react-native" } -} +} \ No newline at end of file diff --git a/libs/sdk-react-native/package.json b/libs/sdk-react-native/package.json index 54b74eaf6..ff7925fa8 100644 --- a/libs/sdk-react-native/package.json +++ b/libs/sdk-react-native/package.json @@ -1,158 +1,158 @@ { - "name": "@breeztech/react-native-breez-sdk", - "version": "0.2.12", - "description": "React Native Breez SDK", - "main": "lib/commonjs/index", - "module": "lib/module/index", - "types": "lib/typescript/index.d.ts", - "react-native": "src/index", - "source": "src/index", - "files": [ - "src", - "lib", - "android", - "ios", - "breez_sdk.podspec", - "!PUBLISHING.md", - "!example", - "!lib/typescript/example", - "!android/.gradle", - "!android/.idea", - "!android/build", - "!ios/build", - "!**/__tests__", - "!**/__fixtures__", - "!**/__mocks__" - ], - "scripts": { - "test": "jest", - "typescript": "tsc --noEmit", - "lint": "eslint \"**/*.{js,ts,tsx}\"", - "prepare": "bob build", - "release": "release-it", - "example": "yarn --cwd example", - "pods": "cd example/ios && pod install", - "bootstrap": "rm -rf node_modules && rm -rf example/node_modules && yarn && yarn example && yarn pods" - }, - "keywords": [ - "react-native", - "ios", - "android", - "breez", - "breez-sdk", - "lightning", - "bitcoin", - "lnurl" - ], - "repository": "https://github.com/breez/breez-sdk", - "author": "Ross Savage (https://github.com/satimoto)", - "license": "MIT", - "bugs": { - "url": "https://github.com/breez/breez-sdk/issues" - }, - "homepage": "https://breez.technology", - "publishConfig": { - "registry": "https://registry.npmjs.org/" - }, - "devDependencies": { - "@commitlint/config-conventional": "^11.0.0", - "@react-native-community/eslint-config": "^2.0.0", - "@release-it/conventional-changelog": "^2.0.0", - "@types/jest": "^26.0.0", - "@types/react": "^16.9.19", - "@types/react-native": "0.62.13", - "commitlint": "^11.0.0", - "eslint": "^7.2.0", - "eslint-config-prettier": "^7.0.0", - "eslint-plugin-prettier": "^3.1.3", - "husky": "^6.0.0", - "jest": "^26.0.1", - "pod-install": "^0.1.0", - "prettier": "^2.0.5", - "react": "18.1.0", - "react-native": "0.70.6", - "react-native-builder-bob": "^0.18.0", - "release-it": "^14.2.2", - "typescript": "^4.1.3" - }, - "peerDependencies": { - "react": "*", - "react-native": "*" + "name": "@breeztech/react-native-breez-sdk", + "version": "0.2.14", + "description": "React Native Breez SDK", + "main": "lib/commonjs/index", + "module": "lib/module/index", + "types": "lib/typescript/index.d.ts", + "react-native": "src/index", + "source": "src/index", + "files": [ + "src", + "lib", + "android", + "ios", + "breez_sdk.podspec", + "!PUBLISHING.md", + "!example", + "!lib/typescript/example", + "!android/.gradle", + "!android/.idea", + "!android/build", + "!ios/build", + "!**/__tests__", + "!**/__fixtures__", + "!**/__mocks__" + ], + "scripts": { + "test": "jest", + "typescript": "tsc --noEmit", + "lint": "eslint \"**/*.{js,ts,tsx}\"", + "prepare": "bob build", + "release": "release-it", + "example": "yarn --cwd example", + "pods": "cd example/ios && pod install", + "bootstrap": "rm -rf node_modules && rm -rf example/node_modules && yarn && yarn example && yarn pods" + }, + "keywords": [ + "react-native", + "ios", + "android", + "breez", + "breez-sdk", + "lightning", + "bitcoin", + "lnurl" + ], + "repository": "https://github.com/breez/breez-sdk", + "author": "Ross Savage (https://github.com/satimoto)", + "license": "MIT", + "bugs": { + "url": "https://github.com/breez/breez-sdk/issues" + }, + "homepage": "https://breez.technology", + "publishConfig": { + "registry": "https://registry.npmjs.org/" + }, + "devDependencies": { + "@commitlint/config-conventional": "^11.0.0", + "@react-native-community/eslint-config": "^2.0.0", + "@release-it/conventional-changelog": "^2.0.0", + "@types/jest": "^26.0.0", + "@types/react": "^16.9.19", + "@types/react-native": "0.62.13", + "commitlint": "^11.0.0", + "eslint": "^7.2.0", + "eslint-config-prettier": "^7.0.0", + "eslint-plugin-prettier": "^3.1.3", + "husky": "^6.0.0", + "jest": "^26.0.1", + "pod-install": "^0.1.0", + "prettier": "^2.0.5", + "react": "18.1.0", + "react-native": "0.70.6", + "react-native-builder-bob": "^0.18.0", + "release-it": "^14.2.2", + "typescript": "^4.1.3" + }, + "peerDependencies": { + "react": "*", + "react-native": "*" + }, + "jest": { + "preset": "react-native", + "modulePathIgnorePatterns": [ + "/example/node_modules", + "/lib/" + ] + }, + "commitlint": { + "extends": [ + "@commitlint/config-conventional" + ] + }, + "release-it": { + "git": { + "commitMessage": "chore: release ${version}", + "tagName": "v${version}" }, - "jest": { - "preset": "react-native", - "modulePathIgnorePatterns": [ - "/example/node_modules", - "/lib/" - ] + "npm": { + "publish": true }, - "commitlint": { - "extends": [ - "@commitlint/config-conventional" - ] + "github": { + "release": true }, - "release-it": { - "git": { - "commitMessage": "chore: release ${version}", - "tagName": "v${version}" - }, - "npm": { - "publish": true - }, - "github": { - "release": true - }, - "plugins": { - "@release-it/conventional-changelog": { - "preset": "angular" - } + "plugins": { + "@release-it/conventional-changelog": { + "preset": "angular" + } + } + }, + "eslintConfig": { + "root": true, + "extends": [ + "@react-native-community", + "prettier" + ], + "rules": { + "prettier/prettier": [ + "error", + { + "endOfLine": "lf", + "printWidth": 150, + "semi": false, + "singleQuote": false, + "tabWidth": 4, + "trailingComma": "none" } - }, - "eslintConfig": { - "root": true, - "extends": [ - "@react-native-community", - "prettier" - ], - "rules": { - "prettier/prettier": [ - "error", - { - "endOfLine": "lf", - "printWidth": 150, - "semi": false, - "singleQuote": false, - "tabWidth": 4, - "trailingComma": "none" - } - ] + ] + } + }, + "eslintIgnore": [ + "node_modules/", + "lib/" + ], + "prettier": { + "endOfLine": "lf", + "printWidth": 150, + "semi": false, + "singleQuote": false, + "tabWidth": 4, + "trailingComma": "none" + }, + "react-native-builder-bob": { + "source": "src", + "output": "lib", + "targets": [ + "commonjs", + "module", + [ + "typescript", + { + "project": "tsconfig.build.json" } - }, - "eslintIgnore": [ - "node_modules/", - "lib/" - ], - "prettier": { - "endOfLine": "lf", - "printWidth": 150, - "semi": false, - "singleQuote": false, - "tabWidth": 4, - "trailingComma": "none" - }, - "react-native-builder-bob": { - "source": "src", - "output": "lib", - "targets": [ - "commonjs", - "module", - [ - "typescript", - { - "project": "tsconfig.build.json" - } - ] - ] - }, - "dependencies": {} + ] + ] + }, + "dependencies": {} } \ No newline at end of file diff --git a/tools/sdk-cli/Cargo.lock b/tools/sdk-cli/Cargo.lock index d730020e6..f2681d510 100644 --- a/tools/sdk-cli/Cargo.lock +++ b/tools/sdk-cli/Cargo.lock @@ -441,7 +441,7 @@ dependencies = [ [[package]] name = "breez-sdk-cli" -version = "0.2.12" +version = "0.2.14" dependencies = [ "anyhow", "breez-sdk-core", @@ -458,7 +458,7 @@ dependencies = [ [[package]] name = "breez-sdk-core" -version = "0.2.12" +version = "0.2.14" dependencies = [ "aes", "anyhow", diff --git a/tools/sdk-cli/Cargo.toml b/tools/sdk-cli/Cargo.toml index 209ff730c..07e5d1b1b 100644 --- a/tools/sdk-cli/Cargo.toml +++ b/tools/sdk-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "breez-sdk-cli" -version = "0.2.12" +version = "0.2.14" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html