@quenty/rx 7.2.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/src/Shared/Observable.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.2.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@7.2.0...@quenty/rx@7.2.1) (2022-12-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/rx
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [7.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rx@7.1.1...@quenty/rx@7.2.0) (2022-12-05)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/rx",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.1",
|
|
4
4
|
"description": "Quenty's reactive library for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "ff0c0732eca3400949945c58c1d3cb8a479c9789"
|
|
44
44
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
--[=[
|
|
2
|
-
Observables are like an [signal](/api/Signal
|
|
2
|
+
Observables are like an [signal](/api/Signal), except they do not execute code
|
|
3
3
|
until the observable is subscribed to. This follows the standard
|
|
4
4
|
Rx API surface for an observable.
|
|
5
5
|
|
|
@@ -164,4 +164,4 @@ function Observable:Subscribe(fireCallback, failCallback, completeCallback)
|
|
|
164
164
|
return sub
|
|
165
165
|
end
|
|
166
166
|
|
|
167
|
-
return Observable
|
|
167
|
+
return Observable
|