Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Nov 22, 2019
1 parent 03e1e51 commit 6ffc408
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 8 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
- run: npm i
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
registry-url: https://registry.npmjs.org/
- run: npm i
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,9 @@ Used version of [email protected]
8. Start `gulp rename` task.

## Changelog
### 1.0.0 (2019-11-23)
* (bluefox) Implemented bindings ala vis in markdown

### 0.2.5 (2019-11-18)
* (algar42) Dimmer light is now switched on with the previous brightness level and not 100%
* (algar42) Added ability to correctly control light brightness from Card and from more_info dialog as well
Expand Down
14 changes: 13 additions & 1 deletion io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
{
"common": {
"name": "lovelace",
"version": "0.2.5",
"version": "1.0.0",
"news": {
"1.0.0": {
"en": "Implemented bindings ala vis in markdown",
"de": "Bindungen im Markdown implementiert",
"ru": "Реализованы bindings в Markdown",
"pt": "Ligações implementadas ala vis na Markdown",
"nl": "Geïmplementeerde bindingen ala vis in markdown",
"fr": "Liaisons implémentées ala vis dans Markdown",
"it": "Attacchi implementati ala vis in markdown",
"es": "Enlaces implementados ala vis en markdown",
"pl": "Zaimplementowane wiązania między innymi w Markdown",
"zh-cn": "在Markdown中实现绑定"
},
"0.2.5": {
"en": "Updates to Light Dimmer, input_boolean, input_select. Russian translation updated",
"de": "Aktualisierungen für Light Dimmer, input_boolean, input_select. Russische Übersetzung aktualisiert",
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.lovelace",
"version": "0.2.5",
"version": "1.0.0",
"description": "With this adapter you can build visualization for ioBroker with Home Assistant Lovelace UI",
"author": {
"name": "bluefox",
Expand Down Expand Up @@ -32,24 +32,24 @@
"jstimezonedetect": "^1.0.7"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/chai": "^4.2.5",
"@types/chai-as-promised": "^7.1.2",
"@types/gulp": "^4.0.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.2",
"@types/node": "^12.12.11",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.5.0",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"axios": "^0.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.5.1",
"eslint": "^6.7.0",
"gulp": "^4.0.2",
"mocha": "^6.2.1",
"mocha": "^6.2.2",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"tslint": "^5.20.0"
"tslint": "^5.20.1"
},
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 6ffc408

Please sign in to comment.