Skip to content

Commit

Permalink
chore: bump to v0.1.7-beta.1
Browse files Browse the repository at this point in the history
2hire-bot committed Nov 18, 2024
1 parent e7c015d commit 738b9ef
Showing 9 changed files with 23 additions and 12 deletions.
2 changes: 1 addition & 1 deletion 2hire-BLEIntSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = '2hire-BLEIntSDK'
s.version = '0.1.7-beta.0'
s.version = '0.1.7-beta.1'
s.summary = 'SDK for BLE integratation'

s.description = <<-DESC
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@


### [0.1.7-beta.0](https://github.com/2hire/BLEIntSDK/compare/v0.1.5...v0.1.6) (2024-11-18)
### [0.1.7-beta.1](https://github.com/2hire/BLEIntSDK/compare/v0.1.6...v0.1.7-beta.0) (2024-11-18)

### [0.1.6](https://github.com/2hire/BLEIntSDK/compare/v0.1.5...v0.1.6) (2024-09-24)
### [0.1.7-beta.0](https://github.com/2hire/BLEIntSDK/compare/v0.1.6...v0.1.7-beta.0) (2024-11-18)

### [0.1.7-beta.1](https://github.com/2hire/BLEIntSDK-private/compare/v0.1.7-beta.0...v0.1.7-beta.1) (2024-11-18)


### Bug Fixes

* **rn,cordova:** move @2hire/bleintsdk-types to dependencies ([5b4ff59](https://github.com/2hire/BLEIntSDK-private/commit/5b4ff5993c22ad6dc91ac4968a153ca42518a302))

### [0.1.7-beta.0](https://github.com/2hire/BLEIntSDK-private/compare/v0.1.6...v0.1.7-beta.0) (2024-11-18)

2 changes: 1 addition & 1 deletion packages/bleintsdk-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@2hire/bleintsdk-types",
"version": "0.1.7-beta.0",
"version": "0.1.7-beta.1",
"main": "src/index.js",
"license": "MIT",
"types": "src/index.d.ts",
6 changes: 4 additions & 2 deletions packages/cordova-plugin-bleintsdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@2hire/cordova-plugin-bleintsdk",
"version": "0.1.7-beta.0",
"version": "0.1.7-beta.1",
"description": "2hire BLEIntSDK cordova-plugin",
"types": "dist/BLEIntSDKCordova.d.ts",
"main": "dist/BLEIntSDKCordova.js",
@@ -32,8 +32,10 @@
"prepare": "tsc",
"release": "npm publish --access public"
},
"dependencies": {
"@2hire/bleintsdk-types": "0.1.7-beta.1"
},
"devDependencies": {
"@2hire/bleintsdk-types": "0.1.7-beta.0",
"@types/cordova": "^0.0.34",
"@types/node": "^18.0.0",
"typescript": "^4.7.4"
2 changes: 1 addition & 1 deletion packages/cordova-plugin-bleintsdk/src/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies {
implementation('org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9')
implementation('com.github.2hire:BLEIntSDK:0.1.7-beta.0')
implementation('com.github.2hire:BLEIntSDK:0.1.7-beta.1')
}

android {
Original file line number Diff line number Diff line change
@@ -16,5 +16,5 @@ Pod::Spec.new do |s|
s.source_files = "ios/*.{h,m,mm,swift}"

s.dependency "React-Core"
s.dependency "2hire-BLEIntSDK", "0.1.7-beta.0"
s.dependency "2hire-BLEIntSDK", "0.1.7-beta.1"
end
2 changes: 1 addition & 1 deletion packages/react-native-bleintsdk/android/build.gradle
Original file line number Diff line number Diff line change
@@ -132,6 +132,6 @@ dependencies {
if (rootProject.name == "ReactNativeBleintSdkExample") {
implementation project(":twohire-bleintsdk-android")
} else {
implementation "com.github.2hire:BLEIntSDK:0.1.7-beta.0"
implementation "com.github.2hire:BLEIntSDK:0.1.7-beta.1"
}
}
6 changes: 4 additions & 2 deletions packages/react-native-bleintsdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@2hire/react-native-bleintsdk",
"version": "0.1.7-beta.0",
"version": "0.1.7-beta.1",
"description": "2hire BLEIntSDK React Native module",
"main": "lib/commonjs/index",
"module": "lib/module/index",
@@ -43,8 +43,10 @@
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@2hire/bleintsdk-types": "0.1.7-beta.1"
},
"devDependencies": {
"@2hire/bleintsdk-types": "0.1.7-beta.0",
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
2 changes: 1 addition & 1 deletion packages/sdk/android/publish.gradle
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ afterEvaluate {
maven(MavenPublication) {
groupId = 'io.twohire'
artifactId = 'bleintsdk'
version = '0.1.7-beta.0'
version = '0.1.7-beta.1'

afterEvaluate {
from components.release

0 comments on commit 738b9ef

Please sign in to comment.