Skip to content

Commit

Permalink
Prepare for 0.1.4 release (#39)
Browse files Browse the repository at this point in the history
Prepared files for 0.1.4 release so that the code contains new features
and bug fixes.
  • Loading branch information
gredajustyna authored Oct 9, 2024
1 parent 1bb64d7 commit ca5d0e5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MobileWhipWhepClient.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MobileWhipWhepClient'
s.version = '0.1.3'
s.version = '0.1.4'
s.summary = 'WHIP/WHEP SDK for iOS.'

s.author = { 'Software Mansion' => 'https://swmansion.com' }
Expand Down
8 changes: 5 additions & 3 deletions packages/react-native-client/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
apply plugin: 'com.android.library'

def packageVersion = '0.1.4'

group = 'com.swmansion.reactnativeclient'
version = '0.1.3'
version = "${packageVersion}"

def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
apply from: expoModulesCorePlugin
Expand Down Expand Up @@ -35,7 +37,7 @@ android {
namespace "com.swmansion.reactnativeclient"
defaultConfig {
versionCode 1
versionName "0.1.3"
versionName "0.1.4"
}
lintOptions {
abortOnError false
Expand All @@ -48,7 +50,7 @@ dependencies {
implementation project(':android-client')
} else {
// todo when released, changed repo name etc then update
implementation 'com.github.software-mansion:react-native-whip-whep:0.1.3'
implementation 'com.github.software-mansion:react-native-whip-whep:${packageVersion}'
}
implementation 'androidx.appcompat:appcompat:1.6.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ Pod::Spec.new do |s|
}

s.source_files = "**/*.{h,m,swift}"
s.dependency 'MobileWhipWhepClient', "0.1.3"
s.dependency 'MobileWhipWhepClient', "0.1.4"

end
4 changes: 2 additions & 2 deletions packages/react-native-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-whip-whep",
"version": "0.1.3",
"version": "0.1.4",
"description": "An implementation of WHIP and WHEP protocols functionalities for React Native.",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down Expand Up @@ -58,4 +58,4 @@
"README.md",
"!**/node_modules"
]
}
}

0 comments on commit ca5d0e5

Please sign in to comment.