Skip to content

Commit

Permalink
versioning (4.0.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianhaberey committed Nov 18, 2024
1 parent b08853a commit 707cb8d
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 23 deletions.
7 changes: 6 additions & 1 deletion nsd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,9 @@
* issue #50: updated uuid to current version (4.2.1)
* updated dart sdk to >=3.0.0 <4.0.0, flutter to >=3.10.0
* updated various dependencies
* fixed various flutter analyze issues detected by new analyze version
* fixed various flutter analyze issues detected by new analyze version

## 4.0.0

* issue #66: prefer using ip address given by android service (thanks RGPaul and jan-mu)
* issue #74: add missing namespace declaration in nsd_android module (thanks Okladnoj)
38 changes: 19 additions & 19 deletions nsd/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: nsd
description: A Flutter plugin for network service discovery and registration (aka NSD / DNS-SD / Bonjour / mDNS).
version: 3.0.0
version: 4.0.0
repository: https://github.com/sebastianhaberey/nsd/tree/main/nsd
issue_tracker: https://github.com/sebastianhaberey/nsd/issues
publish_to: none
#publish_to: none

environment:
sdk: ">=3.0.0 <4.0.0"
Expand All @@ -13,24 +13,24 @@ dependencies:
flutter:
sdk: flutter

# # production
# nsd_android: ^2.0.0
# nsd_ios: ^2.0.0
# nsd_macos: ^2.0.0
# nsd_platform_interface: ^2.0.0
# nsd_windows: ^3.0.0
# production
nsd_android: ^2.1.0
nsd_ios: ^2.0.0
nsd_macos: ^2.0.0
nsd_platform_interface: ^2.1.0
nsd_windows: ^3.0.0

# development
nsd_android:
path: ../nsd_android
nsd_ios:
path: ../nsd_ios
nsd_macos:
path: ../nsd_macos
nsd_windows:
path: ../nsd_windows
nsd_platform_interface:
path: ../nsd_platform_interface
# # development
# nsd_android:
# path: ../nsd_android
# nsd_ios:
# path: ../nsd_ios
# nsd_macos:
# path: ../nsd_macos
# nsd_windows:
# path: ../nsd_windows
# nsd_platform_interface:
# path: ../nsd_platform_interface

dev_dependencies:
flutter_lints: ^3.0.1
Expand Down
4 changes: 4 additions & 0 deletions nsd_android/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@

* issue #55: fixed android error where failure on unregistration did not report back to dart side
* updated dart sdk to >=3.0.0 <4.0.0, flutter to >=3.10.0

# 2.1.0

* issue #74: add missing namespace declaration in nsd_android module (thanks Okladnoj)
2 changes: 1 addition & 1 deletion nsd_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nsd_android
description: Flutter network service discovery plugin (Android submodule - will be installed with the parent plugin).
version: 2.0.0
version: 2.1.0
repository: https://github.com/sebastianhaberey/nsd/tree/main/nsd_android
issue_tracker: https://github.com/sebastianhaberey/nsd/issues

Expand Down
6 changes: 5 additions & 1 deletion nsd_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,8 @@
* issue #50: updated uuid to current version (4.2.1)
* updated dart sdk to >=3.0.0 <4.0.0, flutter to >=3.10.0
* updated various dependencies
* fixed various flutter analyze issues detected by new analyze version
* fixed various flutter analyze issues detected by new analyze version

# 2.1.0

* issue #66: prefer using ip address given by android service (thanks RGPaul and jan-mu)
2 changes: 1 addition & 1 deletion nsd_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nsd_platform_interface
description: Flutter network service discovery plugin (platform interface submodule - will be installed with the parent plugin).
version: 2.0.0
version: 2.1.0
repository: https://github.com/sebastianhaberey/nsd/tree/main/nsd_platform_interface
issue_tracker: https://github.com/sebastianhaberey/nsd/issues

Expand Down

0 comments on commit 707cb8d

Please sign in to comment.