Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JuanSeBestia/react-native-wifi-reborn
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.1
Choose a base ref
...
head repository: JuanSeBestia/react-native-wifi-reborn
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.2
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Oct 24, 2019

  1. add extensions

    JuanSe Dussan authored and JuanSe Dussan committed Oct 24, 2019
    Copy the full SHA
    7639392 View commit details
  2. fix(semantic-release): Add more extensions

    JuanSe Dussan authored and JuanSe Dussan committed Oct 24, 2019
    Copy the full SHA
    40f0e01 View commit details
  3. Merge remote-tracking branch 'origin/master'

    JuanSe Dussan authored and JuanSe Dussan committed Oct 24, 2019
    Copy the full SHA
    1455bfe View commit details
  4. chore(release): 2.0.2 [skip ci]

    ## [2.0.2](v2.0.1...v2.0.2) (2019-10-24)
    
    ### Bug Fixes
    
    * **semantic-release:** Add more extensions ([40f0e01](40f0e01))
    semantic-release-bot committed Oct 24, 2019
    Copy the full SHA
    aab10ed View commit details
Showing with 65 additions and 2 deletions.
  1. +6 −0 CHANGELOG.md
  2. +31 −1 package-lock.json
  3. +3 −1 package.json
  4. +25 −0 release.config.js
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## [2.0.2](https://github.com/JuanSeBestia/react-native-wifi-reborn/compare/v2.0.1...v2.0.2) (2019-10-24)


### Bug Fixes

* **semantic-release:** Add more extensions ([40f0e01](https://github.com/JuanSeBestia/react-native-wifi-reborn/commit/40f0e012cf69adeabfc665eb1382a49fbdc8fbbf))
32 changes: 31 additions & 1 deletion package-lock.json

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

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-wifi-reborn",
"version": "2.0.0",
"version": "2.0.2",
"description": "A react-native implementation for viewing and connecting to Wifi networks on Android and iOS devices.",
"main": "index.js",
"scripts": {
@@ -30,6 +30,8 @@
"homepage": "https://github.com/JuanSeBestia/react-native-wifi-reborn#readme",
"license": "ISC",
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"semantic-release": "^15.13.27"
}
}
25 changes: 25 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
branch: "master",
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
assets: ["README.md"],
message:
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/changelog",
{
changelogFile: "CHANGELOG.md"
}
],
"@semantic-release/git",
"@semantic-release/changelog"
]
};