Skip to content

Commit

Permalink
Release (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
f3ath authored Jan 7, 2024
1 parent 7cd986b commit ec67642
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.5] - 2024-01-07
### Changed
- Bump dependencies

## [0.2.4] - 2023-10-10
### Changed
- Bumped dependencies
Expand Down Expand Up @@ -108,6 +112,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial version

[0.2.5]: https://github.com/f3ath/cider/compare/0.2.4...0.2.5
[0.2.4]: https://github.com/f3ath/cider/compare/0.2.3...0.2.4
[0.2.3]: https://github.com/f3ath/cider/compare/0.2.2...0.2.3
[0.2.2]: https://github.com/f3ath/cider/compare/0.2.1...0.2.2
Expand Down
1 change: 0 additions & 1 deletion lib/src/cli/command/bump_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ class BumpCommand extends CiderCommand {
Future<int> exec(Project project) async {
final part = argResults!.command?.name ??
(throw ArgumentError('Version part must be specified'));

final result = await project.bumpVersion(mutations[part]!,
keepBuild: argResults!['keep-build'],
bumpBuild: argResults!['bump-build'],
Expand Down
4 changes: 2 additions & 2 deletions lib/src/cli/config.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:cider/src/diff.dart';
import 'package:cider/src/tag.dart';
import 'package:cider/src/template/diff.dart';
import 'package:cider/src/template/tag.dart';

class Config {
Config(
Expand Down
2 changes: 1 addition & 1 deletion lib/src/diff.dart → lib/src/template/diff.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:cider/src/template.dart';
import 'package:cider/src/template/template.dart';

final class Diff extends Template {
const Diff(super.template);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/tag.dart → lib/src/template/tag.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:cider/src/template.dart';
import 'package:cider/src/template/template.dart';

final class Tag extends Template {
const Tag(super.template);
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cider
version: 0.2.4
version: 0.2.5
description: Tools for Dart package maintainers. Automates changelog and pubspec updates.
homepage: https://github.com/f3ath/cider
repository: https://github.com/f3ath/cider
Expand All @@ -12,7 +12,7 @@ dependencies:
markdown: ^7.0.0
path: ^1.6.0
pub_semver: ^2.0.0
version_manipulation: ">=0.1.1 <0.3.0"
version_manipulation: ^0.2.0
yaml: ^3.1.0
rfc_6901: ^0.2.0
pubspec_parse: ^1.0.0
Expand Down

0 comments on commit ec67642

Please sign in to comment.