From 6afaa264ee73312c9d73514118db304f4ef80d8a Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Sat, 3 Sep 2022 02:52:45 +0200 Subject: Change next major release to 1.0.0 in the changelog --- Changelog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 42aa5c4a5..9e1d928e5 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -# 0.8.0.0 +# 1.0.0 (unreleased) ## New configuration file! @@ -6,7 +6,7 @@ We already recommended you to move to our new TOML based configuration file. Wit ## API! -With the release of diaspora\* Version 0.8.0.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 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! We are looking forward to seeing many creative applications! -- cgit v1.2.3 From 8a249c06c7bcd751e2b263c8a29c012c29117753 Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Sat, 3 Sep 2022 02:56:46 +0200 Subject: Change deprecation warning for diaspora.yml to version 2.0 as this will be the next major after 1.0 --- config/load_config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/load_config.rb b/config/load_config.rb index 550d72103..f5d5757aa 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 0.9." + warn "WARNING: diaspora.yml is deprecated and will no longer be read in diaspora 2.0." warn " Please copy over diaspora.toml.example to diaspora.toml and migrate your settings from diaspora.yml." add_provider Configurate::Provider::YAML, -- cgit v1.2.3 From 66a0994c91cb22fb7137aec173c38e136c14b6b9 Mon Sep 17 00:00:00 2001 From: Benjamin Neff Date: Sun, 4 Sep 2022 19:11:25 +0200 Subject: Change development version number to 1.0.0-dev Lets use the `-dev` suffix for future development versions. --- config/defaults.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/defaults.yml b/config/defaults.yml index 3b3919f00..62f082181 100644 --- a/config/defaults.yml +++ b/config/defaults.yml @@ -4,7 +4,7 @@ defaults: version: - number: "0.7.99.0" # Do not touch unless doing a release, do not backport the version number that's in master + number: "1.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/" -- cgit v1.2.3