Skip to content

Commit 7dc168e

Browse files
committed
chore(version): prepare version 1.3.0
1 parent f7c830c commit 7dc168e

15 files changed

Lines changed: 43 additions & 44 deletions

File tree

app/pubspec.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description: 'A new Flutter project.'
1515
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1616
# In Windows, build-name is used as the major, minor, and patch parts
1717
# of the product and file versions while build-number is used as the build suffix.
18-
version: 1.2.0+120
18+
version: 1.3.0+120
1919

2020
environment:
2121
sdk: ^3.9.0
@@ -49,20 +49,20 @@ dependencies:
4949
webview_flutter: ^4.13.0
5050
# URL Lancher.
5151
url_launcher: ^6.0.3
52-
# Global raw token
53-
ouds_global_raw_tokens: ^1.1.2
5452
# Core
55-
ouds_core: ^1.2.0
53+
ouds_core: ^1.3.0
54+
# Global raw token
55+
ouds_global_raw_tokens: ^1.3.0
5656
# Orange Theme contract
57-
ouds_theme_contract: ^1.2.0
57+
ouds_theme_contract: ^1.3.0
5858
# Orange Theme
59-
ouds_theme_orange: ^1.2.0
59+
ouds_theme_orange: ^1.3.0
6060
# Orange Compact Theme
61-
ouds_theme_orange_compact: ^1.2.0
61+
ouds_theme_orange_compact: ^1.3.0
6262
# Sosh Theme
63-
ouds_theme_sosh: ^1.2.0
63+
ouds_theme_sosh: ^1.3.0
6464
# Wireframe Theme
65-
ouds_theme_wireframe: ^1.2.0
65+
ouds_theme_wireframe: ^1.3.0
6666

6767
package_info_plus: ^8.3.1
6868
# App Settings

ouds_core/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,17 @@ It is intended to replace internal frameworks and the previous [ODS](https://git
130130

131131
```yaml
132132
# Core
133-
ouds_core: ^1.2.0
133+
ouds_core: ^1.3.0
134134
# Orange Theme contract
135-
ouds_theme_contract: ^1.2.0
135+
ouds_theme_contract: ^1.3.0
136136
# Orange Theme
137-
ouds_theme_orange: ^1.2.0
137+
ouds_theme_orange: ^1.3.0
138138
# Orange Theme Compact
139-
ouds_theme_orange_compact: ^1.2.0
139+
ouds_theme_orange_compact: ^1.3.0
140140
# Sosh Theme
141-
ouds_theme_sosh: ^1.2.0
141+
ouds_theme_sosh: ^1.3.0
142142
# Wireframe Theme
143-
ouds_theme_wireframe: ^1.2.0
143+
ouds_theme_wireframe: ^1.3.0
144144

145145
dependency_overrides:
146146
intl: ^0.20.2
@@ -189,7 +189,6 @@ This allows you to override style tokens for specific components such as border
189189
// Custom configuration with `OudsThemeConfigModel`.
190190
return OudsThemeConfigModel(
191191
button: OudsButtonConfig(rounded: false), // Apply rounded corners for the button.
192-
tag: OudsTagConfig(rounded: false), // Apply rounded corners for the tag.
193192
textInput: OudsTextInputConfig(rounded: true), // Apply rounded corners for the text input.
194193
// Wrap with `OudsTheme` for theme customization.
195194
child: OudsTheme(

ouds_core/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ouds_core
22
description: 'Contains the main elements of the OUDS Android library.'
3-
version: 1.2.0
3+
version: 1.3.0
44

55
environment:
66
sdk: ^3.9.0
@@ -18,7 +18,7 @@ dependencies:
1818
# Flutter svg
1919
flutter_svg: ^2.2.3
2020
# ouds_theme_contract
21-
ouds_theme_contract: ^1.2.0
21+
ouds_theme_contract: ^1.3.0
2222
# ouds_accessibility_plugin
2323
ouds_accessibility_plugin: ^0.2.0
2424
# phone number handling

ouds_global_raw_tokens/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use **Ouds Global Raw Tokens**, add it as a dependency in your `pubspec.yaml`
1414

1515
```yaml
1616
dependencies:
17-
ouds_global_raw_tokens: ^1.2.0
17+
ouds_global_raw_tokens: ^1.3.0
1818
```
1919
2020
## Additional information

ouds_global_raw_tokens/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ouds_global_raw_tokens
22
description: 'Raw tokens are basic design values (e.g., colors, typography) used to create a flexible and consistent theme'
3-
version: 1.2.0
3+
version: 1.3.0
44

55
environment:
66
sdk: ^3.9.0

ouds_theme_contract/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use **Ouds Theme Contract**, add it as a dependency in your `pubspec.yaml` fi
1414

1515
```yaml
1616
dependencies:
17-
ouds_theme_contract: ^1.2.0
17+
ouds_theme_contract: ^1.3.0
1818
```
1919
2020
## Package Structure

ouds_theme_contract/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ouds_theme_contract
22
description: 'Defines the interface for theming in the OUDS framework, ensuring consistent application of design tokens.'
3-
version: 1.2.0
3+
version: 1.3.0
44

55
environment:
66
sdk: ^3.9.0
@@ -11,7 +11,7 @@ resolution: workspace
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
ouds_global_raw_tokens: ^1.2.0
14+
ouds_global_raw_tokens: ^1.3.0
1515

1616
dev_dependencies:
1717
flutter_test:

ouds_theme_orange/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependency in your `pubspec.yaml` file.
1515

1616
```yaml
1717
dependencies:
18-
ouds_theme_orange: ^1.2.0
18+
ouds_theme_orange: ^1.3.0
1919
```
2020
2121
## Additional information

ouds_theme_orange/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ouds_theme_orange
22
description: 'Orange theme implementation for OUDS, with branding-specific design tokens.'
3-
version: 1.2.0
3+
version: 1.3.0
44

55
environment:
66
sdk: ^3.9.0
@@ -11,9 +11,9 @@ resolution: workspace
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
ouds_core: ^1.2.0
15-
ouds_theme_contract: ^1.2.0
16-
ouds_global_raw_tokens: ^1.2.0
14+
ouds_core: ^1.3.0
15+
ouds_theme_contract: ^1.3.0
16+
ouds_global_raw_tokens: ^1.3.0
1717
path_provider: ^2.0.0
1818
http: ^1.6.0
1919

ouds_theme_orange_compact/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use **Theme Orange Compact**, add it as a dependency in your `pubspec.yaml` f
1414

1515
```yaml
1616
dependencies:
17-
ouds_theme_orange_compact: ^1.2.0
17+
ouds_theme_orange_compact: ^1.3.0
1818
```
1919
2020
## Other OUDS Libraries

0 commit comments

Comments
 (0)