Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.11.0 release #169

Merged
merged 4 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ All user visible changes to this project will be documented in this file. This p



## [0.11.0] · 2024-08-26
[0.11.0]: https://github.com/instrumentisto/medea-flutter-webrtc/tree/0.11.0

[Diff](https://github.com/instrumentisto/medea-flutter-webrtc/compare/0.10.0...0.11.0)

### Changed

- Upgraded `flutter_rust_bridge` to 2.2.0 version. ([#167])

[#167]: https://github.com/instrumentisto/medea-flutter-webrtc/pull/167




## [0.10.0] · 2024-08-01
[0.10.0]: https://github.com/instrumentisto/medea-flutter-webrtc/tree/0.10.0

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.instrumentisto.medea_flutter_webrtc'
version '0.10.0'
version '0.11.0'

buildscript {
ext.kotlin_version = '1.9.0'
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PODS:
- instrumentisto-libwebrtc-bin (127.0.6533.72)
- integration_test (0.0.1):
- Flutter
- medea_flutter_webrtc (0.10.0):
- medea_flutter_webrtc (0.11.0):
- Flutter
- instrumentisto-libwebrtc-bin (= 127.0.6533.72)

Expand Down
4 changes: 2 additions & 2 deletions example/macos/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- FlutterMacOS (1.0.0)
- medea_flutter_webrtc (0.10.0):
- medea_flutter_webrtc (0.11.0):
- FlutterMacOS

DEPENDENCIES:
Expand All @@ -15,7 +15,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
medea_flutter_webrtc: 08f036f87205586e697455da2e2ee778eb6271ef
medea_flutter_webrtc: d2feb7c8e2ca9a165ad8a00db8ec9867c90b174c

PODFILE CHECKSUM: 353c8bcc5d5b0994e508d035b5431cfe18c1dea7

Expand Down
2 changes: 1 addition & 1 deletion example/macos/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Cocoa
import FlutterMacOS

@NSApplicationMain
@main
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ packages:
dependency: transitive
description:
name: crypto
sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
sha256: ec30d999af904f33454ba22ed9a86162b35e52b44ac4807d1d93c288041d7d27
url: "https://pub.dev"
source: hosted
version: "3.0.3"
version: "3.0.5"
cupertino_icons:
dependency: "direct main"
description:
Expand Down Expand Up @@ -405,7 +405,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.10.0"
version: "0.11.0"
meta:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/medea_flutter_webrtc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'medea_flutter_webrtc'
s.version = '0.10.0'
s.version = '0.11.0'
s.summary = 'Flutter WebRTC plugin based on Google WebRTC'
s.description = <<-DESC
Flutter WebRTC plugin based on Google WebRTC.
Expand Down
2 changes: 1 addition & 1 deletion macos/medea_flutter_webrtc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'medea_flutter_webrtc'
s.version = '0.10.0'
s.version = '0.11.0'
s.summary = 'Flutter WebRTC plugin based on Google WebRTC'
s.description = <<-DESC
Flutter WebRTC plugin based on Google WebRTC.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: medea_flutter_webrtc
description: >
Flutter WebRTC plugin for Android/iOS/macOS/Linux/Windows/Web, based on
GoogleWebRTC, designed for and used in Medea Jason WebRTC client.
version: 0.10.0
version: 0.11.0
homepage: https://github.com/instrumentisto/medea-flutter-webrtc

environment:
Expand Down
Loading