Skip to content

Commit 85ed2d2

Browse files
committed
Published mizzao:[email protected].
1 parent a943958 commit 85ed2d2

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/comment-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
2929
Please also consider sponsoring the maintainers of the package.
3030
If you don't know who is currently maintaining this package, just leave a comment
31-
and we'll let you know
31+
and we'll let you know.

History.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
## vNEXT
22

3+
## v0.5.3
4+
5+
- Bump minimum Meteor version to 1.12
6+
- Take into account `ROOT_URL` environment variable if set
7+
8+
## v0.5.2
9+
10+
- Compatibility with Meteor 2.3+
11+
312
## v0.5.1
413

514
- Fix an issue where `TimeSync.ServerTime` returned NaN when executed in meteor-desktop.

package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Package.describe({
22
name: "mizzao:timesync",
33
summary: "NTP-style time synchronization between server and client",
4-
version: "0.5.2",
4+
version: "0.5.3",
55
git: "https://github.com/Meteor-Community-Packages/meteor-timesync"
66
});
77

88
Package.onUse(function (api) {
9-
api.versionsFrom(["1.9", "2.3"]);
9+
api.versionsFrom(["1.12", "2.3"]);
1010

1111
api.use([
1212
'check',

0 commit comments

Comments
 (0)