Skip to content

Commit ca8de7e

Browse files
committed
chore(main): release 1.2.0
1 parent 793e8a4 commit ca8de7e

File tree

5 files changed

+41
-5
lines changed

5 files changed

+41
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.0"
2+
".": "1.2.0"
33
}

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## [1.2.0](https://github.com/ZebraDevs/zds-android/compare/v1.1.0...v1.2.0) (2024-10-25)
4+
5+
6+
### ✨ New Features
7+
8+
* Add positive button variant ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
9+
* Updating font to IBM Plex Sans ([bd9e361](https://github.com/ZebraDevs/zds-android/commit/bd9e36102f864d9bdda95c58ae572df7c9ac4716))
10+
* Updating font to IBM Plex Sans ([5c3cfc3](https://github.com/ZebraDevs/zds-android/commit/5c3cfc3846794b457a84325c5a528cb9e7e6e1b7))
11+
12+
13+
### 🪲 Bug Fixes
14+
15+
* Updated colours to match Zeta ([#5](https://github.com/ZebraDevs/zds-android/issues/5)) ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
16+
17+
18+
### 📈 Documentation
19+
20+
* Update button docs ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
21+
* Update readme, fix broken links, update icons docs ([445100e](https://github.com/ZebraDevs/zds-android/commit/445100e9ad9f4a6a63f16f14a5f053bb73bbf1ac))
22+
23+
24+
### ⛓️ Dependencies
25+
26+
* **automated:** Update icons ([#8](https://github.com/ZebraDevs/zds-android/issues/8)) ([990ec23](https://github.com/ZebraDevs/zds-android/commit/990ec23854d3a9f2f95b072df6e5a0848030d875))
27+
* **automated:** Update icons 2024-10-18 ([60249ed](https://github.com/ZebraDevs/zds-android/commit/60249edf1090257f78e8bae50fbdd011a988aeba))
28+
* **automated:** Update icons 2024-10-18 ([00aeae9](https://github.com/ZebraDevs/zds-android/commit/00aeae93ce5acb61acf2127f2615ab40f6be91da))
29+
* 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))
30+
31+
32+
### 🧹 Miscellaneous Chores
33+
34+
* Add version to example app ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
35+
* **main:** release 1.1.0 ([#9](https://github.com/ZebraDevs/zds-android/issues/9)) ([793e8a4](https://github.com/ZebraDevs/zds-android/commit/793e8a4e836b2b63b5f28d5f245fe49b3e2d3148))
36+
* Organise / clean code using Android studio built in tools ([445100e](https://github.com/ZebraDevs/zds-android/commit/445100e9ad9f4a6a63f16f14a5f053bb73bbf1ac))
37+
* Remove unnecessary icons from example app ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
38+
339
## [1.1.0](https://github.com/ZebraDevs/zds-android/compare/1.0.0...v1.1.0) (2024-10-25)
440

541

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ This file should be located within the app directory of your project (not the ro
8989
```
9090
dependencies {
9191
...
92-
implementation 'com.zebra:zds:1.1.0'
92+
implementation 'com.zebra:zds:1.2.0'
9393
}
9494
```
9595

@@ -102,7 +102,7 @@ dependencies {
102102

103103
dependencies {
104104
...
105-
implementation("com.zebra:zds:1.1.0")
105+
implementation("com.zebra:zds:1.2.0")
106106
}
107107

108108
<!-- x-release-please-end -->

app/src/main/java/com/zebra/zdsDemo/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public void onDrawerOpened(@NonNull View drawerView) {
162162
((TextView) navView.getHeaderView(0).findViewById(R.id.title)).setText("Title");
163163
((TextView) navView.getHeaderView(0).findViewById(R.id.subtitle)).setText("Subtitle");
164164
// x-release-please-start-version
165-
((TextView) findViewById(R.id.footer_subtitle)).setText("ZDS Android v1.1.0");
165+
((TextView) findViewById(R.id.footer_subtitle)).setText("ZDS Android v1.2.0");
166166
// x-release-please-end
167167
((AppCompatImageView) navView.getHeaderView(0).findViewById(R.id.image)).setImageResource(R.drawable.ic_happy_round);
168168
((AppCompatImageView) navView.getHeaderView(0).findViewById(R.id.image)).setImageTintList(ColorStateList.valueOf(Color.WHITE));

components/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ publishing {
4444
groupId = 'com.zebra'
4545
artifactId = 'zds'
4646
// x-release-please-start-version
47-
version = '1.1.0'
47+
version = '1.2.0'
4848
// x-release-please-end
4949

5050
afterEvaluate {

0 commit comments

Comments
 (0)