Skip to content

Commit

Permalink
fix(hotfix): fix version concatination
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmannZ committed Apr 30, 2019
1 parent 92c5022 commit faaaeaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
cd packages/graphql
VERSION=${CIRCLE_TAG%"@beta"}
VERSION=${CIRCLE_TAG#"v"}
VERSION=${VERSION#"v"}
# patch version
~/yq w pubspec.yaml version $VERSION > patched_pubspec.yaml
Expand All @@ -158,7 +158,7 @@ jobs:
cd packages/graphql_flutter
VERSION=${CIRCLE_TAG%"@beta"}
VERSION=${CIRCLE_TAG#"v"}
VERSION=${VERSION#"v"}
# patch version
~/yq w pubspec.yaml version $VERSION > patched_pubspec.yaml
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: graphql
description: A stand-alone GraphQL client for Dart, bringing all the features from
a modern GraphQL client to one easy to use package.
version: 1.0.1-beta.3@beta
version: 1.0.1-beta.3
authors:
- Eus Dima <[email protected]>
- Zino Hofmann <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: graphql_flutter
description: A GraphQL client for Flutter, bringing all the features from a modern
GraphQL client to one easy to use package.
version: 1.0.1-beta.3@beta
version: 1.0.1-beta.3
authors:
- Eus Dima <[email protected]>
- Zino Hofmann <[email protected]>
- Michael Joseph Rosenthal <[email protected]>
homepage: https://github.com/zino-app/graphql-flutter/tree/master/packages/graphql_flutter
dependencies:
graphql: ^1.0.1-beta.3@beta
graphql: ^1.0.1-beta.3
flutter:
sdk: flutter
meta: ^1.1.6
Expand Down

0 comments on commit faaaeaf

Please sign in to comment.