Prepare 0.9.0.0 release and replace 1.0 version numbers
This commit is contained in:
parent
7355df5202
commit
d81aa12d54
3 changed files with 5 additions and 5 deletions
|
|
@ -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!
|
||||
|
||||
|
|
|
|||
|
|
@ -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/"
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue