diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ae0555..b919840 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## UNPUBLISHED +## [1.1.0] - 2024-10-21 + +[Compare to previous release][comp:1.1.0] ### Added @@ -44,6 +46,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Developer dependency bumps (no user-facing changes) - Added CI based testing for every PR +[comp:1.1.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.1...v1.1.0 +[1.1.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.1.0 + ## [1.0.1] - 2023-11-14 [Compare to previous release][comp:1.0.1] @@ -61,11 +66,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Developer dependency bumps (no user-facing changes) - Updated publish action, `tslib` requirement and node version (no user-facing changes) +[comp:1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.0...v1.0.1 +[1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.0.1 + ## [1.0.0] - 2022-12-13 **This was the first release** -[comp:1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/compare/v1.0.0...v1.0.1 -[1.0.1]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.0.1 [1.0.0]: https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/release/tag/v1.0.0 [cl:tp]: https://github.com/TopMarksDevelopment/JavaScript.Position/blob/main/CHANGELOG.md diff --git a/README.md b/README.md index 31feec1..3bc06e7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Autocomplete (A JavaScript package) +[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/TopMarksDevelopment/JavaScript.Autocomplete/test.yml?style=for-the-badge&label=Tests)](https://github.com/TopMarksDevelopment/JavaScript.Autocomplete/actions/workflows/test.yml) + A small package to provide an autocomplete list as a user is typing. ### Contents diff --git a/package-lock.json b/package-lock.json index babb46c..ecc43c0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@topmarksdevelopment/autocomplete", - "version": "1.0.1", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@topmarksdevelopment/autocomplete", - "version": "1.0.1", + "version": "1.1.0", "license": "MIT", "dependencies": { "@topmarksdevelopment/position": "^1.0.3" diff --git a/package.json b/package.json index b1c209b..be87214 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@topmarksdevelopment/autocomplete", - "version": "1.0.1", + "version": "1.1.0", "description": "Autocomplete user input - similar to JQuery UI Autocomplete", "author": "TopMarksDevelopment", "license": "MIT",