Skip to content

Commit

Permalink
Merge pull request #9 from sushichop/PR/version-0p2p1
Browse files Browse the repository at this point in the history
Bump to 0.2.1
  • Loading branch information
sushichop authored May 25, 2020
2 parents f721e1e + 29a99de commit c8652f8
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 14 deletions.
25 changes: 15 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
name: ci
on: push
on:
push:
branches: [master]
pull_request:

jobs:
ci:
unit-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12]
runs-on: ubuntu-latest
name: Node ${{ matrix.node }}
name: Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: test
run: |
npm ci
npm run test
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [0.2.1](https://github.com/sushichop/cordova-plugin-wifi-manager/tree/0.2.1) (2020-05-25)

**Implemented enhancements:**

- Update devDependencies

**Implemented enhancements:**

## [0.2.0](https://github.com/sushichop/cordova-plugin-wifi-manager/tree/0.2.0) (2019-02-10)

**Implemented enhancements:**
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018-2019 Koichi Yokota
Copyright (c) 2018-2020 Koichi Yokota

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-wifi-manager" version="0.1.0">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-wifi-manager" version="0.2.1">
<name>WiFiManager</name>
<description>Wi-Fi Manager Plugin for Apache Cordova</description>
<license>MIT</license>
Expand Down
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for cordova-plugin-wifi-manager 0.2.0
// Type definitions for cordova-plugin-wifi-manager 0.2.1
// Project: https://github.com/sushichop/cordova-plugin-wifi-manager
// Definitions by: Koichi Yokota <https://github.com/sushichop>

Expand Down

0 comments on commit c8652f8

Please sign in to comment.