From 7d8947543e4dc9783b7124927b56acb237d46d46 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
 <41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat, 10 May 2025 09:34:01 +0000
Subject: [PATCH] Version Packages

---
 .changeset/afraid-ducks-know.md |  7 -------
 .changeset/blue-carpets-jam.md  | 21 ---------------------
 CHANGELOG.md                    | 26 ++++++++++++++++++++++++++
 package.json                    |  2 +-
 4 files changed, 27 insertions(+), 29 deletions(-)
 delete mode 100644 .changeset/afraid-ducks-know.md
 delete mode 100644 .changeset/blue-carpets-jam.md

diff --git a/.changeset/afraid-ducks-know.md b/.changeset/afraid-ducks-know.md
deleted file mode 100644
index 340a863..0000000
--- a/.changeset/afraid-ducks-know.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-"@changesets/ghcommit": major
----
-
-Make `repo` argument required,
-and remove the `repository` argument which was deprecated
-and previously could be used in its place.
diff --git a/.changeset/blue-carpets-jam.md b/.changeset/blue-carpets-jam.md
deleted file mode 100644
index b9fea7a..0000000
--- a/.changeset/blue-carpets-jam.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-"@changesets/ghcommit": major
----
-
-Refactor & clean up options for multiple functions
-
-- For `commitFilesFromDirectory`:
-  - Rename `workingDirectory` to `cwd` for consistency across repos,
-    and utils like `exec`
-  - Make `cwd` a required argument
-- For `commitChangesFromRepo`:
-  - Merge `repoDirectory` and `addFromDirectory` into a single required argument
-    `cwd`. This folder will now both be used to filter which files are added,
-    and to find the root of the repository.
-  - Introduce `recursivelyFindRoot` option (default: `true`),
-    to optionally search for the root of the repository,
-    by checking for existence of `.git` directory in parent directories,
-    starting from `cwd`.
-
-This effectively removes all usage of process.cwd() within the package,
-instead requiring all usage to be very explicit with specifying paths.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 398590a..a8d72dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,31 @@
 # @changesets/ghcommit
 
+## 2.0.0
+
+### Major Changes
+
+- [#41](https://github.com/changesets/ghcommit/pull/41) [`295d847`](https://github.com/changesets/ghcommit/commit/295d84746faa73afb64ee2cfead1be53c66ec526) Thanks [@s0](https://github.com/s0)! - Make `repo` argument required,
+  and remove the `repository` argument which was deprecated
+  and previously could be used in its place.
+
+- [#40](https://github.com/changesets/ghcommit/pull/40) [`4117e39`](https://github.com/changesets/ghcommit/commit/4117e398eafae4cdf42837e1240e140dbc6592db) Thanks [@s0](https://github.com/s0)! - Refactor & clean up options for multiple functions
+
+  - For `commitFilesFromDirectory`:
+    - Rename `workingDirectory` to `cwd` for consistency across repos,
+      and utils like `exec`
+    - Make `cwd` a required argument
+  - For `commitChangesFromRepo`:
+    - Merge `repoDirectory` and `addFromDirectory` into a single required argument
+      `cwd`. This folder will now both be used to filter which files are added,
+      and to find the root of the repository.
+    - Introduce `recursivelyFindRoot` option (default: `true`),
+      to optionally search for the root of the repository,
+      by checking for existence of `.git` directory in parent directories,
+      starting from `cwd`.
+
+  This effectively removes all usage of process.cwd() within the package,
+  instead requiring all usage to be very explicit with specifying paths.
+
 ## 1.4.0
 
 ### Minor Changes
diff --git a/package.json b/package.json
index 9d252a3..1b754fe 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "@changesets/ghcommit",
-  "version": "1.4.0",
+  "version": "2.0.0",
   "description": "Directly change files on github using the github API, to support GPG signing",
   "keywords": [
     "actions",