New versioning scheme, bump Catstodon revision to 1.0.0
Some checks failed
Bundler Audit / security (push) Has been cancelled
Check i18n / check-i18n (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
Crowdin / Upload translations / upload-translations (push) Has been cancelled
Check formatting / lint (push) Has been cancelled
CSS Linting / lint (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
JavaScript Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
JavaScript Testing / test (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Ruby Testing / build (production) (push) Has been cancelled
Ruby Testing / build (test) (push) Has been cancelled
Ruby Testing / test (3.1) (push) Has been cancelled
Ruby Testing / End to End testing (3.1) (push) Has been cancelled
Ruby Testing / test (.ruby-version) (push) Has been cancelled
Ruby Testing / test (3.2) (push) Has been cancelled
Ruby Testing / Libvips tests (.ruby-version) (push) Has been cancelled
Ruby Testing / Libvips tests (3.1) (push) Has been cancelled
Ruby Testing / Libvips tests (3.2) (push) Has been cancelled
Ruby Testing / End to End testing (.ruby-version) (push) Has been cancelled
Ruby Testing / End to End testing (3.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.1, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled

This commit is contained in:
Jeremy Kescher 2024-08-26 19:07:22 +02:00
parent 7df41062ba
commit 232b6409f5
No known key found for this signature in database
GPG key ID: 80A419A7A613DFA4
2 changed files with 17 additions and 3 deletions

View file

@ -4,6 +4,18 @@ All changes to Catstodon that aren't Mastodon or glitch-soc Mastodon changes wil
All release dates, as well as most other dates, are intended to be read as "within the day, in UTC time." All release dates, as well as most other dates, are intended to be read as "within the day, in UTC time."
## [4.3.0-beta.1+cat.1.0.0] - 2024-08-26
- Upstream (glitch-soc) changes
- Shorter versioning scheme (drops "glitch" in version)
- It is obvious this code is still, and will for the foreseeable future, be based on glitch-soc.
- Release model changes
- Glitch-soc is trying out releases. We will, similarly, do releases as well.
- This means the main branch will now contain "nightly, but stable enough" states, similar to glitch-soc's main
branch, but not every wave of commits to main will be accompanied by a new version.
- Each glitch-soc release will be accompanied by a Catstodon release eventually.
- Releases are now made whenever glitch-soc does one, or when important bugs are fixed either upstream or in Catstodon.
## [4.3.0-alpha.5+glitch+cat+1.0.10] - 2024-08-16 ## [4.3.0-alpha.5+glitch+cat+1.0.10] - 2024-08-16
- Upstream changes. See [CHANGELOG_glitch.md](CHANGELOG_glitch.md), version 4.2.11. - Upstream changes. See [CHANGELOG_glitch.md](CHANGELOG_glitch.md), version 4.2.11.
@ -38,7 +50,9 @@ All release dates, as well as most other dates, are intended to be read as "with
- Upstream changes - Upstream changes
- Fixes for intermittent errors in grouped notifications - Fixes for intermittent errors in grouped notifications
- Emoji reaction patch changes - Emoji reaction patch changes
- "Fix reactions bar alignment in ungrouped notifications" ([30899e050e](https://git.kescher.at/CatCatNya/catstodon/commit/30899e050e4de5952da14278e804ea23110f9204)) by Essem - "Fix reactions bar alignment in ungrouped
notifications" ([30899e050e](https://git.kescher.at/CatCatNya/catstodon/commit/30899e050e4de5952da14278e804ea23110f9204))
by Essem
- Other commit for i18n fixes was already applied in Catstodon. - Other commit for i18n fixes was already applied in Catstodon.
## [v4.3.0-alpha.5+glitch+cat+1.0.2] - 2024-07-16 ## [v4.3.0-alpha.5+glitch+cat+1.0.2] - 2024-07-16

View file

@ -25,11 +25,11 @@ module Mastodon
end end
def catstodon_revision def catstodon_revision
'1.0.10' '1.0.0'
end end
def build_metadata def build_metadata
["glitch+cat+#{catstodon_revision}", ENV.fetch('MASTODON_VERSION_METADATA', nil)].compact_blank.join('.') ["cat.#{catstodon_revision}", ENV.fetch('MASTODON_VERSION_METADATA', nil)].compact_blank.join('.')
end end
def to_a def to_a