Skip to content

Commit

Permalink
update: Bump version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bvdmitri committed Nov 2, 2022
1 parent a9e8955 commit e1ef1bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Rocket"
uuid = "df971d30-c9d6-4b37-b8ff-e965b2cb3a40"
authors = ["Dmitri Bagaev <bvdmitri@gmail.com>"]
version = "1.5.0"
version = "1.6.0"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down
4 changes: 4 additions & 0 deletions src/Rocket.jl
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,8 @@ include("operators/override.jl")

include("extensions/observable/single.jl")

# Extensions to the `getrecent` method
getrecent(observables::Tuple) = Rocket.getrecent.(observables)
getrecent(::Nothing) = nothing

end # module
2 changes: 2 additions & 0 deletions src/observable/combined_updates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ end
strategy :: G
end

getrecent(observable::CombineLatestUpdatesObservable) = getrecent(observable.sources)

function on_subscribe!(observable::CombineLatestUpdatesObservable{S, G}, actor::A) where { S, G, A }
wrapper = CombineLatestUpdatesActorWrapper(observable.sources, actor, observable.strategy)

Expand Down

2 comments on commit e1ef1bb

@bvdmitri
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/71496

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.6.0 -m "<description of version>" e1ef1bb386cf1eec29731126de3bfdc362087886
git push origin v1.6.0

Please sign in to comment.