Skip to content

Commit

Permalink
Release 1.0.0 (#20)
Browse files Browse the repository at this point in the history
* Properly autoload constant

* Chores/command pattern refactor (#15)

* Refactor to command

* Add command module

* Rename method to call

* Add command pattern to commands

* Add status to show results of commands call

* Remove useless methods

* Ignore version

* Refactor api proxy

* Test retry in api proxy

* Add badge to readme

* Add patch number

* Add bump and release to gha

* Add publish gha

* Add doc

* Chores/prepare release 1.0.0 (#19)

* Develop (#18)

* Properly autoload constant

* Chores/command pattern refactor (#15)

* Refactor to command

* Add command module

* Rename method to call

* Add command pattern to commands

* Add status to show results of commands call

* Remove useless methods

* Ignore version

* Refactor api proxy

* Test retry in api proxy

* Add badge to readme

* Add patch number

* Add bump and release to gha

* Add publish gha

* Add doc

* Delete node related stuff

* Fix incorrect path

* Fix prefix

* Fix prefix

* remove tag postfix

* Change branch prefix

* unpin dep

* Make workflow conditionnal

* Use semver instead of decidim versioning

* Run bundle install

* Remove release job

* Use release event

* Add push release tag task

* Push with release

* create release from task

* Fix offenses

* Run workflow from master branch

* Run bundle install

* Run release after tests

* Use checkout v2

* Only run on master or main

* Only push tag

* Generate release

* Bump gem

* Run if branch is master

* fix typo

* Removes generate notes

* Use another action for release

* Bundle install

* Change task name

* Reintroduce release in test file

* Bump version

* Add missing tag

* Use gh

* Pipe login

* Run publish in tests

* Fix typo

* Add complete workflow

* Fix job name

* add complete dependency

* Add debug

* set tag

* Remove debug

* Remove gem

* Remove useless rake task

* Remove useless workflows

* Fix offenses
  • Loading branch information
armandfardeau authored Jan 8, 2022
1 parent f8fa395 commit f7725b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
decidim-spam_detection (0.1.8)
decidim-spam_detection (1.0.0)
decidim-core (~> 0.25)

GEM
Expand Down
9 changes: 7 additions & 2 deletions decidim-spam_detection.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@ Gem::Specification.new do |s|
s.authors = ["Armand Fardeau"]
s.email = ["[email protected]"]
s.license = "AGPL-3.0"
s.homepage = "https://github.com/decidim/decidim-module-spam_detection"
s.homepage = "https://github.com/OpenSourcePolitics/decidim-spam_detection"
s.required_ruby_version = ">= 2.7"

s.name = "decidim-spam_detection"
s.summary = "A decidim spam_detection module"
s.description = "."
s.description = <<-DESCRIPTION
SpamDetection is a detection bot made by OpenSourcePolitics.
It works with a spam detection service (https://github.com/OpenSourcePolitics/spam_detection)
which marks the user with a spam probability score,
between 0.7 and 0.99 it is probable, and above 0.99 it is very sure.
DESCRIPTION

s.files = Dir["{app,config,lib}/**/*", "LICENSE-AGPLv3.txt", "Rakefile", "README.md"]

Expand Down
2 changes: 1 addition & 1 deletion lib/decidim/spam_detection/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Decidim
# This holds the decidim-spam_detection version.
module SpamDetection
def self.version
"0.1.8"
"1.0.0"
end

def self.decidim_version
Expand Down

0 comments on commit f7725b8

Please sign in to comment.