diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2601677..d0ab664 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.0" + ".": "1.2.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cd9de9..1872ff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,41 @@ # Changelog +## [1.2.0](https://github.com/ZebraDevs/zds-android/compare/v1.1.0...v1.2.0) (2024-10-25) + + +### ✨ New Features + +* Add positive button variant ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893)) +* Updating font to IBM Plex Sans ([bd9e361](https://github.com/ZebraDevs/zds-android/commit/bd9e36102f864d9bdda95c58ae572df7c9ac4716)) +* Updating font to IBM Plex Sans ([5c3cfc3](https://github.com/ZebraDevs/zds-android/commit/5c3cfc3846794b457a84325c5a528cb9e7e6e1b7)) + + +### 🪲 Bug Fixes + +* Updated colours to match Zeta ([#5](https://github.com/ZebraDevs/zds-android/issues/5)) ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893)) + + +### 📈 Documentation + +* Update button docs ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893)) +* Update readme, fix broken links, update icons docs ([445100e](https://github.com/ZebraDevs/zds-android/commit/445100e9ad9f4a6a63f16f14a5f053bb73bbf1ac)) + + +### ⛓️ Dependencies + +* **automated:** Update icons ([#8](https://github.com/ZebraDevs/zds-android/issues/8)) ([990ec23](https://github.com/ZebraDevs/zds-android/commit/990ec23854d3a9f2f95b072df6e5a0848030d875)) +* **automated:** Update icons 2024-10-18 ([60249ed](https://github.com/ZebraDevs/zds-android/commit/60249edf1090257f78e8bae50fbdd011a988aeba)) +* **automated:** Update icons 2024-10-18 ([00aeae9](https://github.com/ZebraDevs/zds-android/commit/00aeae93ce5acb61acf2127f2615ab40f6be91da)) +* Update gradle, android compileSdk 34 and other dependencies ([#6](https://github.com/ZebraDevs/zds-android/issues/6)) ([445100e](https://github.com/ZebraDevs/zds-android/commit/445100e9ad9f4a6a63f16f14a5f053bb73bbf1ac)) + + +### 🧹 Miscellaneous Chores + +* Add version to example app ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893)) +* **main:** release 1.1.0 ([#9](https://github.com/ZebraDevs/zds-android/issues/9)) ([7e17545](https://github.com/ZebraDevs/zds-android/commit/7e17545eacc8baee4a2ea1f43432f6b05af7592f)) +* Organise / clean code using Android studio built in tools ([445100e](https://github.com/ZebraDevs/zds-android/commit/445100e9ad9f4a6a63f16f14a5f053bb73bbf1ac)) +* Remove unnecessary icons from example app ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893)) + ## [1.1.0](https://github.com/ZebraDevs/zds-android/compare/1.0.0...v1.1.0) (2024-10-25) diff --git a/README.md b/README.md index abac53b..9e77540 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ This file should be located within the app directory of your project (not the ro ``` dependencies { ... - implementation 'com.zebra:zds:1.1.0' + implementation 'com.zebra:zds:1.2.0' } ``` diff --git a/app/src/main/java/com/zebra/zdsDemo/MainActivity.java b/app/src/main/java/com/zebra/zdsDemo/MainActivity.java index 791125c..3dc29ff 100644 --- a/app/src/main/java/com/zebra/zdsDemo/MainActivity.java +++ b/app/src/main/java/com/zebra/zdsDemo/MainActivity.java @@ -162,7 +162,7 @@ public void onDrawerOpened(@NonNull View drawerView) { ((TextView) navView.getHeaderView(0).findViewById(R.id.title)).setText("Title"); ((TextView) navView.getHeaderView(0).findViewById(R.id.subtitle)).setText("Subtitle"); // x-release-please-start-version - ((TextView) findViewById(R.id.footer_subtitle)).setText("ZDS Android v1.1.0"); + ((TextView) findViewById(R.id.footer_subtitle)).setText("ZDS Android v1.2.0"); // x-release-please-end ((AppCompatImageView) navView.getHeaderView(0).findViewById(R.id.image)).setImageResource(R.drawable.ic_happy_round); ((AppCompatImageView) navView.getHeaderView(0).findViewById(R.id.image)).setImageTintList(ColorStateList.valueOf(Color.WHITE)); diff --git a/components/build.gradle b/components/build.gradle index bdf954b..b2eba21 100644 --- a/components/build.gradle +++ b/components/build.gradle @@ -44,7 +44,7 @@ publishing { groupId = 'com.zebra' artifactId = 'zds' // x-release-please-start-version - version = '1.1.0' + version = '1.2.0' // x-release-please-end afterEvaluate {