Skip to content

Commit

Permalink
[synchronized] v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 15, 2024
1 parent 1ddca41 commit 27f5971
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions synchronized/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.3.0

* Add CombinedLock (thanks to @saibotma)

## 3.2.0

* Required dart 3.5
Expand Down
2 changes: 1 addition & 1 deletion synchronized/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: synchronized
description: Lock mechanism to prevent concurrent access to asynchronous code.
version: 3.2.0
version: 3.3.0
homepage: https://github.com/tekartik/synchronized.dart/tree/master/synchronized
funding:
- https://github.com/sponsors/alextekartik
Expand Down
4 changes: 2 additions & 2 deletions synchronized/test/common_lock_test_.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

// ignore_for_file: avoid_print

import 'package:synchronized/src/basic_lock.dart';
import 'package:synchronized/src/reentrant_lock.dart';
import 'package:synchronized/src/basic_lock.dart' show BasicLock;
import 'package:synchronized/src/reentrant_lock.dart' show ReentrantLock;
import 'package:synchronized/synchronized.dart';
import 'package:test/test.dart';

Expand Down
2 changes: 1 addition & 1 deletion synchronized/tool/tag.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Future<void> main() async {
await sharedStdIn.first;
await shell.run('''
git tag v$version
git push origin --tags
git push origin --follow-tags
''');
await sharedStdIn.terminate();
}

0 comments on commit 27f5971

Please sign in to comment.