Skip to content

Commit 408331f

Browse files
committed
chore(version): prepare new version 2.0.0
1 parent 015a16b commit 408331f

22 files changed

Lines changed: 54 additions & 61 deletions

File tree

.github/workflows/dartdoc-gh-pages.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ jobs:
100100
uses: ./.github/actions/setup
101101

102102
- name: Setup Pages
103+
if: github.event_name != 'pull_request'
103104
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
104105

105106
- name: Setup Ruby
@@ -129,6 +130,7 @@ jobs:
129130
130131
# Upload as GitHub Pages artifact (creates a tar archive named "github-pages")
131132
- name: Upload artifact
133+
if: github.event_name != 'pull_request'
132134
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
133135
with:
134136
path: ./docs
@@ -152,6 +154,7 @@ jobs:
152154
if: github.event_name != 'pull_request'
153155
runs-on: ubuntu-latest
154156
needs: build
157+
if: github.event_name != 'pull_request'
155158
permissions:
156159
contents: write
157160
pages: write

app/pubspec.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ homepage: https://flutter.unified-design-system.orange.com
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1818
# In Windows, build-name is used as the major, minor, and patch parts
1919
# of the product and file versions while build-number is used as the build suffix.
20-
version: 1.3.1+120
20+
version: 2.0.0+120
21+
2122

2223
environment:
2324
sdk: ^3.9.0
@@ -52,19 +53,19 @@ dependencies:
5253
# URL Lancher.
5354
url_launcher: ^6.0.3
5455
# Core
55-
ouds_core: ^1.3.1
56+
ouds_core: ^2.0.0
5657
# Global raw token
57-
ouds_global_raw_tokens: ^1.3.1
58+
ouds_global_raw_tokens: ^2.0.0
5859
# Orange Theme contract
59-
ouds_theme_contract: ^1.3.1
60+
ouds_theme_contract: ^2.0.0
6061
# Orange Theme
61-
ouds_theme_orange: ^1.3.1
62+
ouds_theme_orange: ^2.0.0
6263
# Orange Compact Theme
63-
ouds_theme_orange_compact: ^1.3.1
64+
ouds_theme_orange_compact: ^2.0.0
6465
# Sosh Theme
65-
ouds_theme_sosh: ^1.3.1
66+
ouds_theme_sosh: ^2.0.0
6667
# Wireframe Theme
67-
ouds_theme_wireframe: ^1.3.1
68+
ouds_theme_wireframe: ^2.0.0
6869

6970
package_info_plus: ^8.3.1
7071
# 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.1
149+
ouds_core: ^2.0.0
150150
# Orange Theme contract
151-
ouds_theme_contract: ^1.3.1
151+
ouds_theme_contract: ^2.0.0
152152
# Orange Theme
153-
ouds_theme_orange: ^1.3.1
153+
ouds_theme_orange: ^2.0.0
154154
# Orange Theme Compact
155-
ouds_theme_orange_compact: ^1.3.1
155+
ouds_theme_orange_compact: ^2.0.0
156156
# Sosh Theme
157-
ouds_theme_sosh: ^1.3.1
157+
ouds_theme_sosh: ^2.0.0
158158
# Wireframe Theme
159-
ouds_theme_wireframe: ^1.3.1
159+
ouds_theme_wireframe: ^2.0.0
160160

161161
dependency_overrides:
162162
intl: ^0.20.2

ouds_core/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: ouds_core
2-
description: 'Contains the main elements of the OUDS Android library.'
3-
version: 1.3.1
2+
description: 'Contains the main elements of the OUDS Flutter library.'
43
repository: https://github.com/Orange-OpenSource/ouds-flutter
54
homepage: https://flutter.unified-design-system.orange.com
5+
version: 2.0.0
66

77
environment:
88
sdk: ^3.9.0
@@ -20,7 +20,7 @@ dependencies:
2020
# Flutter svg
2121
flutter_svg: ^2.2.3
2222
# ouds_theme_contract
23-
ouds_theme_contract: ^1.3.1
23+
ouds_theme_contract: ^2.0.0
2424
# ouds_accessibility_plugin
2525
ouds_accessibility_plugin: ^0.2.0
2626
# phone number handling

ouds_global_raw_tokens/CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Fixed
1111

1212
## [1.3.1](https://github.com/Orange-OpenSource/ouds-flutter/compare/1.3.0...1.3.1) - 2026-05-14
13-
### Added
14-
### Changed
15-
### Fixed
1613

1714
## [1.3.0](https://github.com/Orange-OpenSource/ouds-flutter/compare/1.2.0...1.3.0) - 2026-05-08
1815

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.1
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,8 +1,8 @@
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.1
43
repository: https://github.com/Orange-OpenSource/ouds-flutter
54
homepage: https://flutter.unified-design-system.orange.com
5+
version: 2.0.0
66

77
environment:
88
sdk: ^3.9.0

ouds_theme_contract/CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Fixed
1111

1212
## [1.3.1](https://github.com/Orange-OpenSource/ouds-flutter/compare/1.3.0...1.3.1) - 2026-05-14
13-
### Added
14-
### Changed
15-
### Fixed
1613

1714
## [1.3.0](https://github.com/Orange-OpenSource/ouds-flutter/compare/1.2.0...1.3.0) - 2026-05-08
1815
### Added

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.1
17+
ouds_theme_contract: ^2.0.0
1818
```
1919
2020
## Package Structure

ouds_theme_contract/pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.1
43
repository: https://github.com/Orange-OpenSource/ouds-flutter
54
homepage: https://flutter.unified-design-system.orange.com
5+
version: 2.0.0
66

77
environment:
88
sdk: ^3.9.0
@@ -13,7 +13,8 @@ resolution: workspace
1313
dependencies:
1414
flutter:
1515
sdk: flutter
16-
ouds_global_raw_tokens: ^1.3.1
16+
17+
ouds_global_raw_tokens: ^2.0.0
1718

1819
dev_dependencies:
1920
flutter_test:

0 commit comments

Comments
 (0)