From d81aa12d547b0c5f63b62e5aa78daf8842031104 Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Sun, 16 Jun 2024 01:13:14 +0200 Subject: [PATCH] Prepare 0.9.0.0 release and replace 1.0 version numbers --- Changelog.md | 6 +++--- config/defaults.yml | 2 +- config/load_config.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 37a3d9804..67db2e587 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,12 +1,12 @@ -# 1.0.0 (unreleased) +# 0.9.0.0 (unreleased) ## New configuration file! -We already recommended you to move to our new TOML based configuration file. With this release diaspora\* will no longer read the YAML based configuration file at `config/diaspora.yml`. If you have not yet done so, please copy `config/diaspora.toml.example` to `config/diaspora.toml` and migrate your configuration. +Diaspora\* now uses TOML for the configuration file. We recommend you to migrate to this new format, as with the next major release (1.0) diaspora\* will no longer read the YAML based configuration file at `config/diaspora.yml`. To do so, please copy `config/diaspora.toml.example` to `config/diaspora.toml` and migrate your configuration. ## API! -With the release of diaspora\* Version 1.0, we now officially support building applications on top of the diaspora\* API! Please check out [the official API documentation](https://diaspora.github.io/api-documentation/) for instructions, and please do file bugs if you notice something that could be improved! +With the release of diaspora\* Version 0.9, we now officially support building applications on top of the diaspora\* API! Please check out [the official API documentation](https://diaspora.github.io/api-documentation/) for instructions, and please do file bugs if you notice something that could be improved! We are looking forward to seeing many creative applications! diff --git a/config/defaults.yml b/config/defaults.yml index 29d4ebdab..c19c794f4 100644 --- a/config/defaults.yml +++ b/config/defaults.yml @@ -4,7 +4,7 @@ defaults: version: - number: "1.0.0-dev" # Do not touch unless doing a release, do not backport the version number that's in master + number: "0.9.0.0-dev" # Do not touch unless doing a release, do not backport the version number that's in master heroku: false environment: url: "http://localhost:3000/" diff --git a/config/load_config.rb b/config/load_config.rb index f5d5757aa..248b82ceb 100644 --- a/config/load_config.rb +++ b/config/load_config.rb @@ -42,7 +42,7 @@ AppConfig ||= Configurate::Settings.create do File.join(config_dir, "diaspora.toml"), namespace: "configuration", required: false else - warn "WARNING: diaspora.yml is deprecated and will no longer be read in diaspora 2.0." + warn "WARNING: diaspora.yml is deprecated and will no longer be read in diaspora 1.0." warn " Please copy over diaspora.toml.example to diaspora.toml and migrate your settings from diaspora.yml." add_provider Configurate::Provider::YAML,