From 6fe034d55af1d2b236b7c3e90ad1b7c436639445 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 15 Jul 2024 08:11:25 -0500 Subject: [PATCH] Bump version to v1.1.0 --- CHANGELOG.md | 5 ++++- deno.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f07ecec0..36881b2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] - 2024-07-15 + ### Added - Prometheus support (`/metrics` endpoint). @@ -22,5 +24,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[unreleased]: https://gitlab.com/soapbox-pub/ditto/-/compare/v1.0.0...HEAD +[unreleased]: https://gitlab.com/soapbox-pub/ditto/-/compare/v1.1.0...HEAD +[1.1.0]: https://gitlab.com/soapbox-pub/ditto/-/compare/v1.0.0...v1.1.0 [1.0.0]: https://gitlab.com/soapbox-pub/ditto/-/tags/v1.0.0 diff --git a/deno.json b/deno.json index 084b527b..9e9dde90 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "$schema": "https://deno.land/x/deno@v1.41.0/cli/schemas/config-file.v1.json", - "version": "1.0.0", + "version": "1.1.0", "tasks": { "start": "deno run -A src/server.ts", "dev": "deno run -A --watch src/server.ts",