Skip to content

Commit

Permalink
[FIX] Fix package version numbers. (#13)
Browse files Browse the repository at this point in the history
## Description

Fix package version numbers.

## Please check the following boxes

<!--- Put an `X` in all the boxes that apply: -->

- [x] Pull Request title is consistent with the implemented feature, fix
etc.
- [x] I have followed proper descriptive code style and conventions
- [x] The code is self-documenting and has no unnecessary comments. I
named the functions and variables to clearly describe their purpose.
- [ ] I have added Unit Tests and coverage is 70%+
- [x] I have tested and verified this implementation and it works as
expected
  • Loading branch information
kwado-tech authored Dec 27, 2023
1 parent 8ef3087 commit f997e32
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/git_package_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
java_version: 17
flutter_channel: 'stable'
ruby_version: '2.7.5'
release_version: '1.3.1'
release_version: '1.3.2'

jobs:
git_package_release:
Expand Down
20 changes: 12 additions & 8 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -299,17 +299,21 @@ packages:
l10n_mapper_annotation:
dependency: "direct main"
description:
path: "../l10n_mapper_annotation"
relative: true
source: path
version: "1.2.0"
path: l10n_mapper_annotation
ref: "1.3.0"
resolved-ref: "6964e7574784553ecc4af97a9d904b04813b8cb7"
url: "https://github.com/kwado-tech/l10n_mapper.git"
source: git
version: "1.3.0"
l10n_mapper_generator:
dependency: "direct dev"
description:
path: "../l10n_mapper_generator"
relative: true
source: path
version: "1.2.0"
path: l10n_mapper_generator
ref: "1.3.1"
resolved-ref: "8ef3087fb5d58fd95182cde95fe5a74676993edd"
url: "https://github.com/kwado-tech/l10n_mapper.git"
source: git
version: "1.3.0"
lints:
dependency: transitive
description:
Expand Down
20 changes: 8 additions & 12 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@ dependencies:
flutter_localizations:
sdk: flutter
l10n_mapper_annotation:
path: ../l10n_mapper_annotation
# l10n_mapper_annotation:
# git:
# url: https://github.com/kwado-tech/l10n_mapper.git
# path: l10n_mapper_annotation
# ref: 1.2.10
git:
url: https://github.com/kwado-tech/l10n_mapper.git
path: l10n_mapper_annotation
ref: 1.3.0

dev_dependencies:
build_runner: ^2.3.3
Expand All @@ -28,12 +26,10 @@ dev_dependencies:
sdk: flutter

l10n_mapper_generator:
path: ../l10n_mapper_generator
# l10n_mapper_generator:
# git:
# url: https://github.com/kwado-tech/l10n_mapper.git
# path: l10n_mapper_generator
# ref: 1.2.12
git:
url: https://github.com/kwado-tech/l10n_mapper.git
path: l10n_mapper_generator
ref: 1.3.1

flutter:
uses-material-design: true

0 comments on commit f997e32

Please sign in to comment.