Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
1.7.0 correction timestamp on validity interval from
Browse files Browse the repository at this point in the history
update+entity!
  • Loading branch information
michaelfliegner committed Feb 23, 2023
1 parent 6ab0cb9 commit c85e985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BitemporalPostgres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ function update_entity!(w::Workflow)
save!(v)
active_version = v.id
w.ref_version = active_version
w.tsdb_validfrom = now(tz"UTC"),
w.tsdb_validfrom = now(tz"UTC")
save!(w)

i = ValidityInterval(
Expand Down

2 comments on commit c85e985

@michaelfliegner
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 register
Release Notes 1.7.0
correction timestamp tsdb_validfrom on validity interval from update_entity! was different from that on workflow

@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/78371

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.7.0 -m "<description of version>" c85e9857d3b0dbf0869f9ef4d1f7dbd4814c561f
git push origin v1.7.0

Please sign in to comment.