Skip to content

Commit e0f15aa

Browse files
authored
Merge pull request #177 from channel-io/develop
0.12.0
2 parents 78fdccf + 86d409b commit e0f15aa

File tree

5 files changed

+54
-5
lines changed

5 files changed

+54
-5
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Continuous Integration for react-native-channel-io
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
permissions:
8+
contents: read
9+
id-token: write
10+
11+
concurrency:
12+
group: react-native-channel-io-${{ github.head_ref || github.sha }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
deploy:
17+
runs-on: ubuntu-latest
18+
env:
19+
TZ: "Asia/Seoul"
20+
steps:
21+
- name: Checkout repository
22+
uses: actions/checkout@v4
23+
24+
- name: Setup node
25+
uses: actions/setup-node@v4
26+
with:
27+
# nvm rc 참고
28+
node-version: 24.10.0
29+
registry-url: 'https://registry.npmjs.org'
30+
31+
- name: build and deploy
32+
run: npm publish --dry-run

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.12.0
2+
3+
## Update
4+
* support android channel-io 13.0.0
5+
* support iOS channel-io 13.0.1
6+
17
# 0.11.12
28

39
## Update

RNChannelIO.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RNChannelIO"
3-
s.version = "0.5.5"
3+
s.version = "0.6.0"
44
s.summary = "RNChannelIO"
55
s.description = "channel plugin for react native"
66
s.homepage = "https://channel.io"
@@ -15,6 +15,6 @@ Pod::Spec.new do |s|
1515
s.ios.deployment_target = '15.0'
1616

1717
s.dependency "React"
18-
s.dependency "ChannelIOSDK", '12.14.1'
18+
s.dependency "ChannelIOSDK", '13.0.1'
1919

2020
end

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@ repositories {
5656

5757
dependencies {
5858
implementation 'com.facebook.react:react-native'
59-
api 'io.channel:plugin-android:12.15.0'
59+
api 'io.channel:plugin-android:13.0.0'
6060
}

package.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-channel-plugin",
3-
"version": "0.11.12",
3+
"version": "0.12.0",
44
"description": "react native module for channel io",
55
"main": "index.ts",
66
"scripts": {
@@ -15,5 +15,16 @@
1515
"peerDependencies": {
1616
"react-native": ">=0.60.0",
1717
"react-native-firebase": ">=5.0.0"
18-
}
18+
},
19+
"files": [
20+
"android/src",
21+
"android/build.gradle",
22+
"ios",
23+
"RNChannelIO.podspec",
24+
"index.ts",
25+
"README.md",
26+
"CHANGELOG.md",
27+
"LICENSE",
28+
"package.json"
29+
]
1930
}

0 commit comments

Comments
 (0)