Skip to content

Commit

Permalink
⬆️ bump up the version
Browse files Browse the repository at this point in the history
📝 update CHANGELOG.md

Signed-off-by: birjuvachhani <[email protected]>
  • Loading branch information
BirjuVachhani committed Jul 28, 2020
1 parent d73ad5f commit 5b84ab0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.1

- fix dart format warnings
- update dependencies

## 1.0.0

- Added support for exporting generated dart code which is enabled by
Expand Down
2 changes: 1 addition & 1 deletion lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions test/version_test.dart
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@

import 'dart:io';

import 'package:spider/src/version.dart';
import 'package:test/test.dart';
import 'package:yaml/yaml.dart';

void main(){
test('checks for embedded version to match with pubspec version̥',(){
final pubspec = loadYaml(File('pubspec.yaml').readAsStringSync());
expect(pubspec['version'].toString(), packageVersion);
});
}
void main() {
test('checks for embedded version to match with pubspec version̥', () {
final pubspec = loadYaml(File('pubspec.yaml').readAsStringSync());
expect(pubspec['version'].toString(), packageVersion);
});
}

0 comments on commit 5b84ab0

Please sign in to comment.