Skip to content
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.4.0"
".": "0.5.0"
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.5.0](https://github.com/googlemaps/react-native-driver-sdk/compare/0.4.0...0.5.0) (2026-04-30)


### ⚠ BREAKING CHANGES

* Removes support for the legacy React Native architecture. See MIGRATING.md for detailed migration instructions.

### Features

* add internal usage attibution ID ([#95](https://github.com/googlemaps/react-native-driver-sdk/issues/95)) ([b72e33a](https://github.com/googlemaps/react-native-driver-sdk/commit/b72e33a71ff0e266efc66a170abab7499abc2c5e))
* support new React Native architecture ([#93](https://github.com/googlemaps/react-native-driver-sdk/issues/93)) ([1882ddf](https://github.com/googlemaps/react-native-driver-sdk/commit/1882ddf171e049559538a14eb009572b4f80fc85))


### Bug Fixes

* internal event handling and token handling ([#97](https://github.com/googlemaps/react-native-driver-sdk/issues/97)) ([45e76ba](https://github.com/googlemaps/react-native-driver-sdk/commit/45e76ba32fc35f2208b209ff196eb778c6cea9f8))

## [0.4.0](https://github.com/googlemaps/react-native-driver-sdk/compare/0.3.2...0.4.0) (2025-12-19)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/** SDK version constants for internal usage attribution. */
public final class SdkVersion {
public static final String VERSION = "0.4.0"; // {x-release-please-version}
public static final String VERSION = "0.5.0"; // {x-release-please-version}

public static final String ATTRIBUTION_ID =
"gmp_git_reactnativedriversdk_v" + VERSION + "_android";
Expand Down
2 changes: 1 addition & 1 deletion ios/SdkVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

#import <Foundation/Foundation.h>

static NSString *const kRNDriverSdkVersion = @"0.4.0"; // x-release-please-version
static NSString *const kRNDriverSdkVersion = @"0.5.0"; // x-release-please-version
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@googlemaps/react-native-driver-sdk",
"version": "0.4.0",
"version": "0.5.0",
"author": "Google",
"description": "A React Native library for Driver SDK on Google Maps Platform",
"main": "lib/commonjs/index",
Expand Down
Loading