Skip to content

Commit 92c2d19

Browse files
authored
Merge pull request #32 from kshetline/development
Timezone database update (tz 2020b).
2 parents abf8d0d + e83806e commit 92c2d19

6 files changed

Lines changed: 70 additions & 69 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.7.3
2+
3+
* Timezone database update (tz 2020b).
4+
15
## 2.7.2
26

37
* Documentation update, outlining the physical construction of the clock using the included 3D stand design.

package-lock.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aw-clock",
3-
"version": "2.7.2",
3+
"version": "2.7.3",
44
"license": "MIT",
55
"author": "Kerry Shetline <kerry@shetline.com>",
66
"scripts": {
@@ -21,18 +21,18 @@
2121
"jquery": "^3.5.1",
2222
"js-cookie": "^2.2.1",
2323
"ks-astronomy": "^1.1.0",
24-
"ks-date-time-zone": "^1.6.8",
24+
"ks-date-time-zone": "^1.7.0",
2525
"ks-math": "^1.2.1",
2626
"ks-util": "^2.2.0",
2727
"rxjs": "^6.6.3",
28-
"simple-keyboard": "^2.30.43"
28+
"simple-keyboard": "^2.30.45"
2929
},
3030
"devDependencies": {
3131
"@types/copyfiles": "^2.4.0",
3232
"@types/follow-redirects": "^1.13.0",
3333
"@types/jasmine": "^3.5.14",
3434
"@types/jasminewd2": "^2.0.8",
35-
"@types/jquery": "^3.5.2",
35+
"@types/jquery": "^3.5.3",
3636
"@types/js-cookie": "^2.2.6",
3737
"@types/node": "^13.13.25",
3838
"@typescript-eslint/eslint-plugin": "^2.34.0",

server/package-lock.json

Lines changed: 43 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aw-clock-server",
3-
"version": "2.7.2",
3+
"version": "2.7.3",
44
"license": "MIT",
55
"author": "Kerry Shetline <kerry@shetline.com>",
66
"private": true,
@@ -21,7 +21,7 @@
2121
"debug": "~4.1.1",
2222
"express": "~4.17.1",
2323
"http-errors": "~1.7.3",
24-
"ks-date-time-zone": "^1.6.8",
24+
"ks-date-time-zone": "^1.7.0",
2525
"ks-math": "^1.2.1",
2626
"ks-util": "^2.2.0",
2727
"morgan": "~1.10.0",
@@ -45,7 +45,7 @@
4545
"chai": "^4.2.0",
4646
"mocha": "^7.2.0",
4747
"nock": "^12.0.3",
48-
"nodemon": "^2.0.4",
48+
"nodemon": "^2.0.5",
4949
"serialport": "^8.0.8",
5050
"ts-loader": "^6.2.2",
5151
"ts-node": "^8.10.2",

server/src/shared-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
export const CommonConditionsKeys = ['time', 'summary', 'icon', 'humidity', 'cloudCover', 'precipIntensity', 'precipIntensityMax',
55
'precipProbability', 'precipType'];
66

7-
export const AWC_VERSION = '2.7.2';
7+
export const AWC_VERSION = '2.7.3';
88

99
export interface CommonConditions {
1010
time: number;

0 commit comments

Comments
 (0)