version bump 0.4.0
This commit is contained in:
@@ -38,17 +38,18 @@ jobs:
|
||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.DOCS_DEPLOY_AWS_API_SECRET }}
|
||||
AWS_DEFAULT_REGION: "us-east-1"
|
||||
|
||||
# - name: Setup credentials
|
||||
# run: |
|
||||
# mkdir -p ~/.pub-cache
|
||||
# cat <<EOF > ~/.pub-cache/credentials.json
|
||||
# {
|
||||
# "accessToken":"${{ secrets.OAUTH_ACCESS_TOKEN }}",
|
||||
# "refreshToken":"${{ secrets.OAUTH_REFRESH_TOKEN }}",
|
||||
# "tokenEndpoint":"https://accounts.google.com/o/oauth2/token",
|
||||
# "scopes": [ "openid", "https://www.googleapis.com/auth/userinfo.email" ],
|
||||
# "expiration": 1628106170263
|
||||
# }
|
||||
# EOF
|
||||
- name: Setup credentials
|
||||
run: |
|
||||
mkdir -p ~/.pub-cache
|
||||
cat <<EOF > ~/.pub-cache/credentials.json
|
||||
{
|
||||
"accessToken": "${{ secrets.OAUTH_ACCESS_TOKEN }}",
|
||||
"refreshToken": "${{ secrets.OAUTH_REFRESH_TOKEN }}",
|
||||
"idToken": "${{ secrets.OAUTH_ID_TOKEN }}",
|
||||
"tokenEndpoint":"https://accounts.google.com/o/oauth2/token",
|
||||
"scopes": [ "openid", "https://www.googleapis.com/auth/userinfo.email" ],
|
||||
"expiration": 1628106170263
|
||||
}
|
||||
EOF
|
||||
|
||||
# - run: flutter pub publish -f
|
||||
- run: flutter pub publish -f
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
# CHANGELOG
|
||||
|
||||
## 0.4.0
|
||||
|
||||
* fixed audio track playback for web
|
||||
* fixed publishing tracks for web
|
||||
* updated constants to be lowerCamelCase
|
||||
* updated style & formatting guide
|
||||
|
||||
## 0.3.0
|
||||
|
||||
* `replaceTrack` API to switch camera sources
|
||||
|
||||
@@ -136,7 +136,7 @@ packages:
|
||||
path: ".."
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.3.0"
|
||||
version: "0.4.0"
|
||||
logging:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
const version = '0.3.0';
|
||||
const version = '0.4.0';
|
||||
const protocolVersion = 2;
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
name: livekit_client
|
||||
description: Flutter Client SDK for LiveKit
|
||||
version: 0.3.0
|
||||
version: 0.4.0
|
||||
homepage: https://livekit.io
|
||||
|
||||
environment:
|
||||
@@ -12,7 +12,7 @@ dependencies:
|
||||
fixnum: ^1.0.0
|
||||
flutter:
|
||||
sdk: flutter
|
||||
flutter_webrtc: ^0.6.4
|
||||
flutter_webrtc: ^0.6.5
|
||||
http: ^0.13.3
|
||||
logging: ^1.0.1
|
||||
protobuf: ^2.0.0
|
||||
|
||||
Reference in New Issue
Block a user