diff --git a/README.md b/README.md index 43b6c7a..e03ba63 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Decidim is a participatory democracy framework, written in Ruby on Rails, originally developed for the Barcelona City government online and offline participation website. Installing these libraries will provide you a generator and gems to help you develop web applications -**Shipped version:** 0.26.2~ynh1 - +**Shipped version:** 0.27.0~ynh1 **Demo:** https://decidim.org/demo/ diff --git a/README_fr.md b/README_fr.md index f11b8fd..3df1263 100644 --- a/README_fr.md +++ b/README_fr.md @@ -18,8 +18,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Decidim is a participatory democracy framework, written in Ruby on Rails, originally developed for the Barcelona City government online and offline participation website. Installing these libraries will provide you a generator and gems to help you develop web applications -**Version incluse :** 0.26.2~ynh1 - +**Version incluse :** 0.27.0~ynh1 **Démo :** https://decidim.org/demo/ diff --git a/conf/app.src b/conf/app.src index ea5a871..a8fa7e1 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/decidim/decidim/archive/refs/tags/v0.26.2.tar.gz -SOURCE_SUM=1dcc49b95543604302bc65df4d2119f90dcb10ad7cc68c4f3e7cc6ffc64eabc5 +SOURCE_URL=https://github.com/decidim/decidim/archive/refs/tags/v0.27.0.tar.gz +SOURCE_SUM=3be1ec143e26bd278eedfd0995a77656276e223fc2974664af47a2c9c73171e5 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 9d38c28..4e186b6 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,7 @@ "description": { "en": "Participatory democracy framework," }, - "version": "0.26.2~ynh1", + "version": "0.27.0~ynh1", "url": "https://decidim.org/", "upstream": { "license": "AGPL-3.0-or-later", diff --git a/scripts/_common.sh b/scripts/_common.sh index 11d05e3..e14d61d 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,10 +4,10 @@ # COMMON VARIABLES #================================================= -ruby_version=2.7.4 +ruby_version=3.0.2 nodejs_version=16 bundler_version=2.2.19 -rails_version=6.0.4 +rails_version=6.1 # dependencies used by the app (must be on a single line) pkg_dependencies="postgresql imagemagick redis-server" diff --git a/scripts/install b/scripts/install index e237bff..56ebf66 100755 --- a/scripts/install +++ b/scripts/install @@ -127,8 +127,8 @@ ynh_script_progression --message="Installing gems..." --weight=1 pushd $final_path ynh_use_ruby ynh_use_nodejs - ynh_exec_warn_less $ynh_gem install bundler --version $bundler_version - ynh_exec_warn_less $ynh_gem install rails --version $rails_version + ynh_exec_warn_less $ynh_gem install bundler + #ynh_exec_warn_less $ynh_gem install rails --version $rails_version ynh_exec_warn_less $ynh_gem install decidim -v $(ynh_app_upstream_version) ynh_exec_warn_less decidim live popd diff --git a/scripts/restore b/scripts/restore index 7280c16..71d2cb2 100755 --- a/scripts/restore +++ b/scripts/restore @@ -117,8 +117,8 @@ ynh_script_progression --message="Installing gems..." --weight=1 pushd $final_path ynh_use_ruby ynh_use_nodejs - ynh_exec_warn_less $ynh_gem install bundler --version $bundler_version - ynh_exec_warn_less $ynh_gem install rails --version $rails_version + ynh_exec_warn_less $ynh_gem install bundler + #ynh_exec_warn_less $ynh_gem install rails --version $rails_version ynh_exec_warn_less $ynh_gem install decidim -v $(ynh_app_upstream_version) popd diff --git a/scripts/upgrade b/scripts/upgrade index 7fb59a1..bd414ca 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -118,8 +118,8 @@ then pushd $final_path ynh_use_ruby ynh_use_nodejs - ynh_exec_warn_less $ynh_gem install bundler --version $bundler_version - ynh_exec_warn_less $ynh_gem install rails --version $rails_version + ynh_exec_warn_less $ynh_gem install bundler + #ynh_exec_warn_less $ynh_gem install rails --version $rails_version ynh_exec_warn_less $ynh_gem install decidim -v $(ynh_app_upstream_version) popd fi