Skip to content

Commit 1657cc3

Browse files
authored
chore(version): prepare version 2.0.0 (#747)
Prepare version v2.0.0 (#747)
1 parent 19b3018 commit 1657cc3

16 files changed

Lines changed: 54 additions & 86 deletions

File tree

app/pubspec.yaml

Lines changed: 8 additions & 8 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.3.0+120
18+
version: 2.0.0+120
1919

2020
environment:
2121
sdk: ^3.9.0
@@ -50,19 +50,19 @@ dependencies:
5050
# URL Lancher.
5151
url_launcher: ^6.0.3
5252
# Core
53-
ouds_core: ^1.3.0
53+
ouds_core: ^2.0.0
5454
# Global raw token
55-
ouds_global_raw_tokens: ^1.3.0
55+
ouds_global_raw_tokens: ^2.0.0
5656
# Orange Theme contract
57-
ouds_theme_contract: ^1.3.0
57+
ouds_theme_contract: ^2.0.0
5858
# Orange Theme
59-
ouds_theme_orange: ^1.3.0
59+
ouds_theme_orange: ^2.0.0
6060
# Orange Compact Theme
61-
ouds_theme_orange_compact: ^1.3.0
61+
ouds_theme_orange_compact: ^2.0.0
6262
# Sosh Theme
63-
ouds_theme_sosh: ^1.3.0
63+
ouds_theme_sosh: ^2.0.0
6464
# Wireframe Theme
65-
ouds_theme_wireframe: ^1.3.0
65+
ouds_theme_wireframe: ^2.0.0
6666

6767
package_info_plus: ^8.3.1
6868
# App Settings

ouds_core/README.md

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

147147
```yaml
148148
# Core
149-
ouds_core: ^1.3.0
149+
ouds_core: ^2.0.0
150150
# Orange Theme contract
151-
ouds_theme_contract: ^1.3.0
151+
ouds_theme_contract: ^2.0.0
152152
# Orange Theme
153-
ouds_theme_orange: ^1.3.0
153+
ouds_theme_orange: ^2.0.0
154154
# Orange Theme Compact
155-
ouds_theme_orange_compact: ^1.3.0
155+
ouds_theme_orange_compact: ^2.0.0
156156
# Sosh Theme
157-
ouds_theme_sosh: ^1.3.0
157+
ouds_theme_sosh: ^2.0.0
158158
# Wireframe Theme
159-
ouds_theme_wireframe: ^1.3.0
159+
ouds_theme_wireframe: ^2.0.0
160160

161161
dependency_overrides:
162162
intl: ^0.20.2

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.3.0
3+
version: 2.0.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.3.0
21+
ouds_theme_contract: ^2.0.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.3.0
17+
ouds_global_raw_tokens: ^2.0.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.3.0
3+
version: 2.0.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.3.0
17+
ouds_theme_contract: ^2.0.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.3.0
3+
version: 2.0.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.3.0
14+
ouds_global_raw_tokens: ^2.0.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.3.0
18+
ouds_theme_orange: ^2.0.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.3.0
3+
version: 2.0.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.3.0
15-
ouds_theme_contract: ^1.3.0
16-
ouds_global_raw_tokens: ^1.3.0
14+
ouds_core: ^2.0.0
15+
ouds_theme_contract: ^2.0.0
16+
ouds_global_raw_tokens: ^2.0.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.3.0
17+
ouds_theme_orange_compact: ^2.0.0
1818
```
1919
2020
## Other OUDS Libraries

0 commit comments

Comments
 (0)