diff --git a/README.md b/README.md index fe7c9473..e52051b5 100644 --- a/README.md +++ b/README.md @@ -1587,6 +1587,8 @@ Factory methods are defined as static methods in the static class `Observable`. | **Never**() | `Observable` | | **NextFrame**(`CancellationToken` cancellationToken = default) | `Observable` | | **NextFrame**(`FrameProvider` frameProvider, `CancellationToken` cancellationToken = default) | `Observable` | +| **ObservePropertyChanged**(this `T` value, `Func` propertySelector, `Boolean` pushCurrentValueOnSubscribe = true, `CancellationToken` cancellationToken = default, `String` expr = default) | `Observable` | +| **ObservePropertyChanging**(this `T` value, `Func` propertySelector, `Boolean` pushCurrentValueOnSubscribe = true, `CancellationToken` cancellationToken = default, `String` expr = default) | `Observable` | | **Range**(`Int32` start, `Int32` count) | `Observable` | | **Range**(`Int32` start, `Int32` count, `CancellationToken` cancellationToken) | `Observable` | | **Repeat**(`T` value, `Int32` count) | `Observable` | diff --git a/docs/reference_factory.md b/docs/reference_factory.md index 24670b8d..ced92df5 100644 --- a/docs/reference_factory.md +++ b/docs/reference_factory.md @@ -43,6 +43,8 @@ | **Never**() | `Observable` | | **NextFrame**(`CancellationToken` cancellationToken = default) | `Observable` | | **NextFrame**(`FrameProvider` frameProvider, `CancellationToken` cancellationToken = default) | `Observable` | +| **ObservePropertyChanged**(this `T` value, `Func` propertySelector, `Boolean` pushCurrentValueOnSubscribe = true, `CancellationToken` cancellationToken = default, `String` expr = default) | `Observable` | +| **ObservePropertyChanging**(this `T` value, `Func` propertySelector, `Boolean` pushCurrentValueOnSubscribe = true, `CancellationToken` cancellationToken = default, `String` expr = default) | `Observable` | | **Range**(`Int32` start, `Int32` count) | `Observable` | | **Range**(`Int32` start, `Int32` count, `CancellationToken` cancellationToken) | `Observable` | | **Repeat**(`T` value, `Int32` count) | `Observable` | diff --git a/src/R3.Godot/addons/R3.Godot/plugin.cfg b/src/R3.Godot/addons/R3.Godot/plugin.cfg index 682ce725..ecc6d2e6 100644 --- a/src/R3.Godot/addons/R3.Godot/plugin.cfg +++ b/src/R3.Godot/addons/R3.Godot/plugin.cfg @@ -3,6 +3,6 @@ name="R3.Godot" description="The new future of dotnet/reactive and UniRx." author="Cysharp" -version="1.1.0" +version="1.1.1" language="C-sharp" script="GodotR3Plugin.cs" diff --git a/src/R3.Unity/Assets/R3.Unity/package.json b/src/R3.Unity/Assets/R3.Unity/package.json index 813a0778..20959f54 100644 --- a/src/R3.Unity/Assets/R3.Unity/package.json +++ b/src/R3.Unity/Assets/R3.Unity/package.json @@ -2,7 +2,7 @@ "name": "com.cysharp.r3", "displayName": "R3", "author": { "name": "Cysharp, Inc.", "url": "https://cysharp.co.jp/en/" }, - "version": "1.1.0", + "version": "1.1.1", "unity": "2021.3", "description": "Reactive Extensions for Unity.", "keywords": [ "rx", "event", "Scripting" ],