diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 34677d7..0f012d8 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -4,5 +4,5 @@ contact_links:
url: https://discord.gg/8fpZA4S
about: Please ask and answer questions here.
- name: Homebridge-August - Pull Requests
- url: https://github.com/donavanbecker/homebridge-august/pulls
+ url: https://github.com/homebridge-plugins/homebridge-august/pulls
about: Please report security vulnerabilities here.
diff --git a/.github/workflows/beta-release.yml b/.github/workflows/beta-release.yml
index 82003d1..8cfbd81 100644
--- a/.github/workflows/beta-release.yml
+++ b/.github/workflows/beta-release.yml
@@ -1,29 +1,27 @@
-name: Node-CI Beta
+name: Beta Release
on:
push:
branches: [beta-*.*.*, beta]
- release:
- types: [prereleased]
workflow_dispatch:
jobs:
build_and_test:
- uses: donavanbecker/.github/.github/workflows/nodejs-build-and-test.yml@latest
+ uses: homebridge/.github/.github/workflows/nodejs-build-and-test.yml@latest
with:
- enable_coverage: true
+ enable_coverage: false
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
lint:
needs: build_and_test
- uses: donavanbecker/.github/.github/workflows/eslint.yml@latest
+ uses: homebridge/.github/.github/workflows/eslint.yml@latest
publish:
needs: lint
-
- if: ${{ github.repository == 'donavanbecker/homebridge-august' }}
-
- uses: donavanbecker/.github/.github/workflows/npm-publish.yml@latest
+ if: ${{ github.repository == 'homebridge-plugins/homebridge-august' }}
+ permissions:
+ id-token: write
+ uses: homebridge/.github/.github/workflows/npm-publish-esm.yml@latest
with:
tag: 'beta'
dynamically_adjust_version: true
@@ -32,14 +30,26 @@ jobs:
secrets:
npm_auth_token: ${{ secrets.npm_token }}
- github-releases-to-discord:
+ pre-release:
needs: publish
+ if: ${{ github.repository == 'homebridge-plugins/homebridge-august' }}
+ uses: homebridge/.github/.github/workflows/pre-release.yml@latest
+ with:
+ npm_version: ${{ needs.publish.outputs.NPM_VERSION }}
+ body: |
+ **Beta Release**
+ **Version**: v${{ needs.publish.outputs.NPM_VERSION }}
+ [How To Test Beta Releases](https://github.com/homebridge-plugins/homebridge-august/wiki/Beta-Version)
- if: ${{ github.repository == 'donavanbecker/homebridge-august' && github.event.release.prerelease == true }}
-
- uses: OpenWonderLabs/.github/.github/workflows/discord-webhooks.yml@latest
+ github-releases-to-discord:
+ name: Discord Webhooks
+ needs: [build_and_test,publish]
+ if: ${{ github.repository == 'homebridge-plugins/homebridge-august' }}
+ uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
with:
- footer_title: "August"
+ title: "August Beta Release"
+ description: |
+ Version `v${{ needs.publish.outputs.NPM_VERSION }}`
+ url: "https://github.com/homebridge-plugins/homebridge-august/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}"
secrets:
- DISCORD_WEBHOOK_URL_LATEST: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
- DISCORD_WEBHOOK_URL_BETA: ${{ secrets.DISCORD_WEBHOOK_URL_BETA }}
+ DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_BETA || secrets.DISCORD_WEBHOOK_URL_LATEST }}
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 842fa20..7087a78 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -8,11 +8,11 @@ on:
jobs:
build_and_test:
- uses: donavanbecker/.github/.github/workflows/nodejs-build-and-test.yml@latest
+ uses: homebridge/.github/.github/workflows/nodejs-build-and-test.yml@latest
with:
- enable_coverage: true
+ enable_coverage: false
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
lint:
needs: build_and_test
- uses: donavanbecker/.github/.github/workflows/eslint.yml@latest
+ uses: homebridge/.github/.github/workflows/eslint.yml@latest
diff --git a/.github/workflows/changerelease.yml b/.github/workflows/changerelease.yml
index 111ba97..135b42d 100644
--- a/.github/workflows/changerelease.yml
+++ b/.github/workflows/changerelease.yml
@@ -6,6 +6,6 @@ on:
jobs:
changerelease:
- uses: donavanbecker/.github/.github/workflows/changerelease.yml@latest
+ uses: homebridge/.github/.github/workflows/change-release.yml@latest
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml
deleted file mode 100644
index 525d2b2..0000000
--- a/.github/workflows/dependabot.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-name: AutoDependabot
-
-on:
- pull_request:
- branches: [ beta, latest ]
- pull_request_target:
- branches: [ beta, latest ]
-
-jobs:
- dependabot:
- uses: donavanbecker/.github/.github/workflows/dependabot.yml@latest
- secrets:
- token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
index 6eb3c01..d3af51c 100644
--- a/.github/workflows/labeler.yml
+++ b/.github/workflows/labeler.yml
@@ -4,6 +4,6 @@ on: [pull_request]
jobs:
labeler:
- uses: donavanbecker/.github/.github/workflows/labeler.yml@latest
+ uses: homebridge/.github/.github/workflows/labeler.yml@latest
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml
index 48588fc..6037dec 100644
--- a/.github/workflows/release-drafter.yml
+++ b/.github/workflows/release-drafter.yml
@@ -9,6 +9,6 @@ on:
jobs:
release-drafter:
- uses: donavanbecker/.github/.github/workflows/release-drafter.yml@latest
+ uses: homebridge/.github/.github/workflows/release-drafter.yml@latest
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 801725c..8df1555 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -1,4 +1,4 @@
-name: Node Release
+name: Release
on:
release:
@@ -6,29 +6,30 @@ on:
jobs:
build_and_test:
- uses: donavanbecker/.github/.github/workflows/nodejs-build-and-test.yml@latest
+ uses: homebridge/.github/.github/workflows/nodejs-build-and-test.yml@latest
with:
- enable_coverage: true
+ enable_coverage: false
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
publish:
needs: build_and_test
-
- if: ${{ github.repository == 'donavanbecker/homebridge-august' }}
-
- uses: donavanbecker/.github/.github/workflows/npm-publish.yml@latest
+ if: ${{ github.repository == 'homebridge-plugins/homebridge-august' }}
+ permissions:
+ id-token: write
+ uses: homebridge/.github/.github/workflows/npm-publish.yml@latest
secrets:
npm_auth_token: ${{ secrets.npm_token }}
github-releases-to-discord:
- needs: publish
-
- if: ${{ github.repository == 'donavanbecker/homebridge-august' }}
-
- uses: donavanbecker/.github/.github/workflows/discord-webhooks.yml@latest
+ name: Discord Webhooks
+ needs: [build_and_test,publish]
+ if: ${{ github.repository == 'homebridge-plugins/homebridge-august' }}
+ uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
with:
- footer_title: "August"
+ title: "August Release"
+ description: |
+ Version `v${{ needs.publish.outputs.NPM_VERSION }}`
+ url: "https://github.com/homebridge-plugins/homebridge-august/releases/tag/v${{ needs.publish.outputs.NPM_VERSION }}"
secrets:
- DISCORD_WEBHOOK_URL_LATEST: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
- DISCORD_WEBHOOK_URL_BETA: ${{ secrets.DISCORD_WEBHOOK_URL_BETA }}
+ DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index f07b234..2683a78 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -7,6 +7,6 @@ on:
jobs:
stale:
- uses: donavanbecker/.github/.github/workflows/stale.yml@latest
+ uses: homebridge/.github/.github/workflows/stale.yml@latest
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f4ae183..e65d74c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,56 +2,63 @@
All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/)
-## [2.2.7](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.7) (2024-09-25)
+## [2.2.8](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.8) (2024-11-03)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.6...v2.2.7
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.7...v2.2.8
-## [2.2.6](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.6) (2024-06-23)
+## [2.2.7](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.7) (2024-09-25)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.5...v2.2.6
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.6...v2.2.7
-## [2.2.5](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.5) (2024-06-23)
+## [2.2.6](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.6) (2024-06-23)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.4...v2.2.5
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.5...v2.2.6
-## [2.2.4](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.4) (2024-06-23)
+## [2.2.5](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.5) (2024-06-23)
+
+### What's Changes
+- Housekeeping and updated dependencies.
+
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.4...v2.2.5
+
+## [2.2.4](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.4) (2024-06-23)
### What's Changes
- Fix parsing Issue that caused plugin to restart
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.3...v2.2.4
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.3...v2.2.4
-## [2.2.3](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.3) (2024-06-22)
+## [2.2.3](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.3) (2024-06-22)
### What's Changes
- Fix some config issues.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.2...v2.2.3
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.2...v2.2.3
-## [2.2.2](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.2) (2024-06-22)
+## [2.2.2](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.2) (2024-06-22)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.1...v2.2.2
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.1...v2.2.2
-## [2.2.1](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.1) (2024-06-22)
+## [2.2.1](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.1) (2024-06-22)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.2.0...v2.2.1
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.2.0...v2.2.1
-## [2.2.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.2.0) (2024-05-25)
+## [2.2.0](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.2.0) (2024-05-25)
### What's Changes
#### Major Changes
@@ -63,132 +70,132 @@ All notable changes to this project will be documented in this file. This projec
- Added Success Logs(`green`) which requires Homebridge 1.8.0 or higher
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.1.0...v2.2.0
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.1.0...v2.2.0
-## [2.1.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.1.0) (2024-05-07)
+## [2.1.0](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.1.0) (2024-05-07)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v2.0.0...v2.1.0
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v2.0.0...v2.1.0
-## [2.0.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v2.0.0) (2024-01-31)
+## [2.0.0](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v2.0.0) (2024-01-31)
### What's Changes
- Moved from CommonJS to ES Module
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.3.4...v2.0.0
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.3.4...v2.0.0
-## [1.3.4](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.3.4) (2024-01-15)
+## [1.3.4](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.3.4) (2024-01-15)
### What's Changes
-- fix August validation failure with verification codes starting with `0`. Thanks [@westhom](https://github.com/westhom), [#88](https://github.com/donavanbecker/homebridge-august/pull/88)
+- fix August validation failure with verification codes starting with `0`. Thanks [@westhom](https://github.com/westhom), [#88](https://github.com/homebridge-plugins/homebridge-august/pull/88)
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.3.3...v1.3.4
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.3.3...v1.3.4
-## [1.3.3](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.3.3) (2023-12-15)
+## [1.3.3](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.3.3) (2023-12-15)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.3.2...v1.3.3
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.3.2...v1.3.3
-## [1.3.2](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.3.2) (2023-11-26)
+## [1.3.2](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.3.2) (2023-11-26)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.3.1...v1.3.2
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.3.1...v1.3.2
-## [1.3.1](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.3.1) (2023-11-07)
+## [1.3.1](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.3.1) (2023-11-07)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.3.0...v1.3.1
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.3.0...v1.3.1
-## [1.3.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.2.1) (2023-10-31)
+## [1.3.0](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.2.1) (2023-10-31)
### What's Changes
- Add support for Yale Home with countryCode, Thanks [@hufftheweevil](https://github.com/hufftheweevil)
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.2.1...v1.3.0
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.2.1...v1.3.0
-## [1.2.1](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.2.1) (2023-08-27)
+## [1.2.1](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.2.1) (2023-08-27)
### What's Changes
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.2.0...v1.2.1
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.2.0...v1.2.1
-## [1.2.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.2.0) (2023-08-19)
+## [1.2.0](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.2.0) (2023-08-19)
### What's Changes
-- Fixed debugging issue, Thanks [@dacarson](https://github.com/dacarson) [#69](https://github.com/donavanbecker/homebridge-august/pull/69)
-- Reduce August API calls, Thanks [@dacarson](https://github.com/dacarson) [#69](https://github.com/donavanbecker/homebridge-august/pull/69)
-- Fix 'Locking...' and 'Unlocking...' issue, Thanks [@dacarson](https://github.com/dacarson) [#66](https://github.com/donavanbecker/homebridge-august/pull/66)
+- Fixed debugging issue, Thanks [@dacarson](https://github.com/dacarson) [#69](https://github.com/homebridge-plugins/homebridge-august/pull/69)
+- Reduce August API calls, Thanks [@dacarson](https://github.com/dacarson) [#69](https://github.com/homebridge-plugins/homebridge-august/pull/69)
+- Fix 'Locking...' and 'Unlocking...' issue, Thanks [@dacarson](https://github.com/dacarson) [#66](https://github.com/homebridge-plugins/homebridge-august/pull/66)
- Default Refresh Rate has been updated to limit the rate at which we refresh from August APIs.
- - This should fix any Status 429 Errors. [#55](https://github.com/donavanbecker/homebridge-august/issues/55)
+ - This should fix any Status 429 Errors. [#55](https://github.com/homebridge-plugins/homebridge-august/issues/55)
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.1.1...v1.2.0
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.1.1...v1.2.0
-## [1.1.1](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.1.1) (2023-04-07)
+## [1.1.1](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.1.1) (2023-04-07)
### What's Changes
- Housekeeping and updated dependencies.
- This release will end support for Node v14.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.1.0...v1.1.1
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.1.0...v1.1.1
-## [1.1.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.1.0) (2022-12-07)
+## [1.1.0](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.1.0) (2022-12-07)
### What's Changes
-- Added option to `hide_lock` and only display Door Sense (Contact Sensor). [#26](https://github.com/donavanbecker/homebridge-august/issues/26)
-- Fixed issue when DoorSense is not configured/in use. [#21](https://github.com/donavanbecker/homebridge-august/issues/21)
+- Added option to `hide_lock` and only display Door Sense (Contact Sensor). [#26](https://github.com/homebridge-plugins/homebridge-august/issues/26)
+- Fixed issue when DoorSense is not configured/in use. [#21](https://github.com/homebridge-plugins/homebridge-august/issues/21)
- Fixed TypeError: Cannot convert undefined or null to object. Thanks [@evantobin](https://github.com/evantobin)
- Housekeeping and updated dependencies.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.0.5...v1.1.0
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.0.5...v1.1.0
-## [1.0.5](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.0.5) (2022-10-09)
+## [1.0.5](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.0.5) (2022-10-09)
### What's Changes
- Fixed issue with RetryCount showing false `LockCurrentState` of `JAMMED`.
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.0.4...v1.0.5
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.0.4...v1.0.5
-## [1.0.4](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.0.4) (2022-10-07)
+## [1.0.4](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.0.4) (2022-10-07)
### What's Changes
- Remove Extra Logging
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.0.3...v1.0.4
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.0.3...v1.0.4
-## [1.0.3](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.0.3) (2022-10-07)
+## [1.0.3](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.0.3) (2022-10-07)
### What's Changes
- Quick Fix
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.0.2...v1.0.3
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.0.2...v1.0.3
-## [1.0.2](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.0.2) (2022-10-07)
+## [1.0.2](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.0.2) (2022-10-07)
### What's Changes
- Quick Fix
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.0.1...v1.0.2
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.0.1...v1.0.2
-## [1.0.1](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.0.0) (2022-10-07)
+## [1.0.1](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.0.0) (2022-10-07)
### What's Changes
- Quick Fix
-**Full Changelog**: https://github.com/donavanbecker/homebridge-august/compare/v1.0.0...v1.0.1
+**Full Changelog**: https://github.com/homebridge-plugins/homebridge-august/compare/v1.0.0...v1.0.1
-## [1.0.0](https://github.com/donavanbecker/homebridge-august/releases/tag/v1.0.0) (2022-10-07)
+## [1.0.0](https://github.com/homebridge-plugins/homebridge-august/releases/tag/v1.0.0) (2022-10-07)
### What's Changes
- Initial Release
diff --git a/README.md b/README.md
index 1a81214..450fba1 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-
+
# Homebridge August
@@ -9,9 +9,9 @@
- The Homebridge August
+ The Homebridge August
plugin allows you to access your August & Yale Lock(s) from HomeKit with
- Homebridge.
+ Homebridge.
The Homebridge August +
The Homebridge August plugin allows you to access your August & Yale Lock(s) from HomeKit with - Homebridge. + Homebridge.
Thank you to hufftheweevil for the august-api module.
--