Skip to content

Commit

Permalink
v2.1.4
Browse files Browse the repository at this point in the history
Signed-off-by: Vanessa Fotso <[email protected]>
  • Loading branch information
vanessuniq committed Aug 25, 2023
1 parent 9c9bc38 commit a0de8d0
Show file tree
Hide file tree
Showing 6 changed files with 263 additions and 120 deletions.
10 changes: 10 additions & 0 deletions .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
user=mitre
project=vulcan
future-release=v2.1.4
since-tag=v2.0.0
release-branch=master
add-sections={"dependencies":{"prefix":"**Dependencies updates:**","labels":["dependencies"]}}
enhancement-labels=enhancement,Enhancement,Type: Enhancement,feature request
http-cache=false
filter-by-milestone=false
issues-of-open-milestones=false
363 changes: 248 additions & 115 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.1.3
v2.1.4
4 changes: 2 additions & 2 deletions app/helpers/application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ def latest_release_details
File.open(changelog_path, 'r') do |file|
line = file.gets
while line
if line.start_with?('## Vulcan v')
if line.start_with?('## [v')
# Found the beginning of a release, start reading details
release_details = line
line = file.gets
while line && !line.start_with?('## Vulcan v')
while line && !line.start_with?('## [v')
release_details += line
line = file.gets
end
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/sessions/new.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.col-md-12
%h1 Welcome to Vulcan
%br/
.row.align-items-center.h-100
.row
.col-md-5.order-2.order-md-1
= render 'devise/shared/what_is_vulcan'
.col-md.offset-md-0.offset-lg-1.order-1.order-md-2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"vue-template-compiler": "^2.6.11",
"vue-turbolinks": "^2.1.0"
},
"version": "2.1.3",
"version": "2.1.4",
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.3.0",
Expand Down

0 comments on commit a0de8d0

Please sign in to comment.