Skip to content

Commit

Permalink
chore: bump version to 1.0.1 (#66)
Browse files Browse the repository at this point in the history
* chore: bump version to 1.0.1

* chore: add a test for valid plugin versioning
  • Loading branch information
tianhaoz95 committed Dec 12, 2020
1 parent 0ec0b53 commit fa70f92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/flutter_version/version.rb
Expand Up @@ -2,6 +2,6 @@

module Fastlane
module FlutterVersion
VERSION = '1.0.0'
VERSION = '1.0.1'
end
end
3 changes: 3 additions & 0 deletions spec/flutter_version_action_spec.rb
Expand Up @@ -118,5 +118,8 @@
Fastlane::Actions::FlutterVersionAction.available_options.length
).to eq(2)
end
it 'has valid plugin version format' do
expect(Fastlane::FlutterVersion::VERSION).to match(/[0-9]+.[0-9]+.[0-9]+/)
end
end
end

0 comments on commit fa70f92

Please sign in to comment.