From a91fd01c6130f2999b4c46f60aab3a6a6cf81cd3 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Wed, 11 Oct 2023 12:26:31 -0400 Subject: [PATCH] Bumped versions post release --- CHANGELOG.md | 2 ++ README.md | 20 ++++++++++++++++++++ api/nodeinfo/2.1.ts | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc0566df..5e762c380 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## 1.0.1 + ## 1.0.0 * Initial release diff --git a/README.md b/README.md index 8a264f556..1f61b8fae 100644 --- a/README.md +++ b/README.md @@ -144,3 +144,23 @@ curl -G -X POST --data-urlencode token="<token>" https://<your domain>/send-note ``` Keep in mind the POLL_MILLISECONDS env variable acts as a guard against this being called too often. You will need to set this to a low value for debugging. + +## Release Process + +Make sure the version is correct in the following locations: +* `/api/nodeinfo/2.1.ts` +* `/CHANGELOG.md` + +Consider updating dependencies in `/package.json`. + +Optionally: Create a news post announcing the release of the new version. + +Now just create the git tag for the new version and push it. + +```bash +git tag -a "v1.0.0" "Release version 1.0.0" +git push origin v1.0.0:v1.0.0 +``` + +Now bump all the versions to the next patch version in the three files listed +above and push that to master. diff --git a/api/nodeinfo/2.1.ts b/api/nodeinfo/2.1.ts index f48d92978..c25586083 100644 --- a/api/nodeinfo/2.1.ts +++ b/api/nodeinfo/2.1.ts @@ -9,7 +9,7 @@ export default function (req: VercelRequest, res: VercelResponse) { "name": "Fedipage", "repository": "https://git.qoto.org/fedipage/fedipage", "homepage": "https://fedipage.com/", - "version": "1.0.0" + "version": "1.0.1" }, "protocols": [ "activitypub" -- GitLab