Skip to content

Commit

Permalink
Update changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
tramuntanal committed Nov 11, 2024
1 parent fcc1bc3 commit 88124d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Following Semantic Versioning 2.

## next version:

## Version 0.8.1 (MINOR)
- Fix: Use prepend instead of overriding to apply Lib::Decidim::ParticipatorySpaceResourceableDecorator.

## Version 0.8.0 (MINOR)
- Upgrade Decidim to v0.28
- Upgrade Ruby to 3.1.1
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ GIT
PATH
remote: .
specs:
decidim-department_admin (0.8.0)
decidim-department_admin (0.8.1)
decidim-admin (~> 0.28.0)
decidim-core (~> 0.28.0)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ def user_role_config_for(user, role_name)
end

require "decidim/assembly"
Decidim::Assembly.prepend(::Lib::Decidim::ParticipatorySpaceResourceableDecorator)
Decidim::Assembly.prepend(Lib::Decidim::ParticipatorySpaceResourceableDecorator)
require "decidim/participatory_process"
Decidim::ParticipatoryProcess.prepend(::Lib::Decidim::ParticipatorySpaceResourceableDecorator)
Decidim::ParticipatoryProcess.prepend(Lib::Decidim::ParticipatorySpaceResourceableDecorator)
if Decidim::DepartmentAdmin.conferences_defined?
require "decidim/conference"
Decidim::Conference.prepend(::Lib::Decidim::ParticipatorySpaceResourceableDecorator)
Decidim::Conference.prepend(Lib::Decidim::ParticipatorySpaceResourceableDecorator)
end
2 changes: 1 addition & 1 deletion lib/decidim/department_admin/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Decidim
module DepartmentAdmin
# see CHANGELOG.md
def self.version
"0.8.0"
"0.8.1"
end
end
end

0 comments on commit 88124d7

Please sign in to comment.