diff --git a/CHANGELOG.md b/CHANGELOG.md index 1737cad..78b639e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## 1.2.0 + +- feat: upgrade libgit2 to 1.5.0 + +- feat: add ability to pass checkout options to `reset(...)` API method + +- feat: add ability to pass options to `prune(...)` Worktree API method + +- feat: add ability to pass options to `Merge.fileFromIndex(...)` API method + +- feat: add ability to pass options to `addAll(...)` Index API method + +- feat: add ability to pass options to `revert(...)` and `revertTo(...)` Commit API methods: + + - select parent to revert to for merge commits + - merge options + - checkout options + +- chore: upgrade dependencies + ## 1.1.2 - fix: lookup library in Flutter's .pub_cache folder diff --git a/macos/libgit2dart.podspec b/macos/libgit2dart.podspec index f43fe3d..c9c9408 100644 --- a/macos/libgit2dart.podspec +++ b/macos/libgit2dart.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'libgit2dart' - s.version = '1.1.2' + s.version = '1.2.0' s.summary = 'Dart bindings to libgit2.' s.description = <<-DESC Dart bindings to libgit2. diff --git a/pubspec.yaml b/pubspec.yaml index d28b846..f868cae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: libgit2dart description: Dart bindings to libgit2, provides ability to use libgit2 library in Dart and Flutter. -version: 1.1.2 +version: 1.2.0 homepage: https://github.com/SkinnyMind/libgit2dart