Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Bump version to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
floriandejonckheere committed May 13, 2021
1 parent 4e13a03 commit 609a31c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .rubocop.yml
Expand Up @@ -51,6 +51,9 @@ Metrics/PerceivedComplexity:
Rails:
Enabled: true

Rails/EnvironmentVariableAccess:
Enabled: false

Rails/Output:
Exclude:
- db/seeds/**/*
Expand Down
4 changes: 2 additions & 2 deletions db/seeds/development/03_tasks.rb
Expand Up @@ -20,9 +20,9 @@ def relate(from, type, to)
# Project
project = create(project.graph, :idea, "Graph project management", "Use graphs to visualize and represent tasks, features and resources.")

deploy = create(project.graph, :task, "Deploy app", "Deploy application using a Continuous Deployment mechanism.")
# deploy = create(project.graph, :task, "Deploy app", "Deploy application using a Continuous Deployment mechanism.")

relate(deploy, :child_of, project)
# relate(deploy, :child_of, project)

# Tasks
manage_tasks = create(project.graph, :epic, "Task management", "Task management involves creating, modifying and deleting tasks")
Expand Down
2 changes: 1 addition & 1 deletion lib/code_red/version.rb
Expand Up @@ -3,7 +3,7 @@
module CodeRed
module Version
MAJOR = 0
MINOR = 3
MINOR = 4
PATCH = 0
PRE = nil

Expand Down

0 comments on commit 609a31c

Please sign in to comment.