Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2467074

Browse files
committedJan 27, 2025·
Bump version to 0.2.0
1 parent b41d9ce commit 2467074

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed
 

‎CHANGELOG.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
# Changelog
22

3-
## [v0.1.0](https://github.com/viamrobotics/viam-flutter-sdk/tree/v0.1.0) (2025-01-06)
3+
## [v0.2.0](https://github.com/viamrobotics/viam-flutter-sdk/tree/v0.2.0) (2025-01-27)
44

5-
[Full Changelog](https://github.com/viamrobotics/viam-flutter-sdk/compare/v0.0.31...v0.1.0)
5+
[Full Changelog](https://github.com/viamrobotics/viam-flutter-sdk/compare/v0.1.0...v0.2.0)
66

77
**Merged pull requests:**
88

9+
- Automated Protos Update [\#333](https://github.com/viamrobotics/viam-flutter-sdk/pull/333) ([github-actions[bot]](https://github.com/apps/github-actions))
10+
- Automated Protos Update [\#332](https://github.com/viamrobotics/viam-flutter-sdk/pull/332) ([github-actions[bot]](https://github.com/apps/github-actions))
11+
- RSDK-9636: Add deprecation warning with date the Discover Components will be deprecated to the flutter SDK [\#331](https://github.com/viamrobotics/viam-flutter-sdk/pull/331) ([martha-johnston](https://github.com/martha-johnston))
12+
- Add includeBinary to data funcs [\#330](https://github.com/viamrobotics/viam-flutter-sdk/pull/330) ([njooma](https://github.com/njooma))
13+
- Automated Protos Update [\#329](https://github.com/viamrobotics/viam-flutter-sdk/pull/329) ([github-actions[bot]](https://github.com/apps/github-actions))
14+
- Automated Protos Update [\#328](https://github.com/viamrobotics/viam-flutter-sdk/pull/328) ([github-actions[bot]](https://github.com/apps/github-actions))
15+
- DOCS-3354: Add links for vision service methods [\#327](https://github.com/viamrobotics/viam-flutter-sdk/pull/327) ([JessamyT](https://github.com/JessamyT))
16+
- DOCS-3351: Update Flutter SDK component links [\#326](https://github.com/viamrobotics/viam-flutter-sdk/pull/326) ([JessamyT](https://github.com/JessamyT))
17+
- Automated Protos Update [\#325](https://github.com/viamrobotics/viam-flutter-sdk/pull/325) ([github-actions[bot]](https://github.com/apps/github-actions))
18+
- v0.1.0 [\#324](https://github.com/viamrobotics/viam-flutter-sdk/pull/324) ([github-actions[bot]](https://github.com/apps/github-actions))
919
- Automated Protos Update [\#323](https://github.com/viamrobotics/viam-flutter-sdk/pull/323) ([github-actions[bot]](https://github.com/apps/github-actions))
1020
- Fix building example project for iOS [\#322](https://github.com/viamrobotics/viam-flutter-sdk/pull/322) ([kevin49999](https://github.com/kevin49999))
21+
- RSDK-9622: Add Discover Service and GetModelsFromModules to Flutter [\#321](https://github.com/viamrobotics/viam-flutter-sdk/pull/321) ([martha-johnston](https://github.com/martha-johnston))
1122
- Automated Protos Update [\#320](https://github.com/viamrobotics/viam-flutter-sdk/pull/320) ([github-actions[bot]](https://github.com/apps/github-actions))
1223
- Automated Protos Update [\#319](https://github.com/viamrobotics/viam-flutter-sdk/pull/319) ([github-actions[bot]](https://github.com/apps/github-actions))
1324
- RSDK-9505: accept bson queries in mql function [\#318](https://github.com/viamrobotics/viam-flutter-sdk/pull/318) ([purplenicole730](https://github.com/purplenicole730))
@@ -45,6 +56,10 @@
4556
- Improved error handling in sessions [\#284](https://github.com/viamrobotics/viam-flutter-sdk/pull/284) ([njooma](https://github.com/njooma))
4657
- Automated Protos Update [\#282](https://github.com/viamrobotics/viam-flutter-sdk/pull/282) ([github-actions[bot]](https://github.com/apps/github-actions))
4758

59+
## [v0.1.0](https://github.com/viamrobotics/viam-flutter-sdk/tree/v0.1.0) (2025-01-06)
60+
61+
[Full Changelog](https://github.com/viamrobotics/viam-flutter-sdk/compare/v0.0.31...v0.1.0)
62+
4863
## [v0.0.31](https://github.com/viamrobotics/viam-flutter-sdk/tree/v0.0.31) (2024-12-16)
4964

5065
[Full Changelog](https://github.com/viamrobotics/viam-flutter-sdk/compare/v0.0.30...v0.0.31)

‎lib/src/utils.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ extension GetReadingsResponseUtils on GetReadingsResponse {
116116
}
117117

118118
String getVersionMetadata() {
119-
const String sdkVersion = 'v0.1.0';
119+
const String sdkVersion = 'v0.2.0';
120120
const String apiTag = 'v0.1.385';
121121

122122
return 'flutter;$sdkVersion;$apiTag';

‎pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: viam_sdk
22
description: Viam Robotics Flutter SDK. Connect to your Viam robots using WebRTC or gRPC, and control your robots remotely.
3-
version: 0.1.0
3+
version: 0.2.0
44
homepage: https://github.com/viamrobotics/viam-flutter-sdk/
55

66
environment:

0 commit comments

Comments
 (0)
Please sign in to comment.