Skip to content

Commit b6e84b0

Browse files
author
Vanessa Fotso
committed
v2.1.4
Signed-off-by: Vanessa Fotso <vfotso@mitre.org>
1 parent 37c678d commit b6e84b0

File tree

6 files changed

+263
-120
lines changed

6 files changed

+263
-120
lines changed

.github_changelog_generator

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
user=mitre
2+
project=vulcan
3+
future-release=v2.1.4
4+
since-tag=v2.0.0
5+
release-branch=master
6+
add-sections={"dependencies":{"prefix":"**Dependencies updates:**","labels":["dependencies"]}}
7+
enhancement-labels=enhancement,Enhancement,Type: Enhancement,feature request
8+
http-cache=false
9+
filter-by-milestone=false
10+
issues-of-open-milestones=false

CHANGELOG.md

Lines changed: 248 additions & 115 deletions
Large diffs are not rendered by default.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.1.3
1+
v2.1.4

app/helpers/application_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ def latest_release_details
3131
File.open(changelog_path, 'r') do |file|
3232
line = file.gets
3333
while line
34-
if line.start_with?('## Vulcan v')
34+
if line.start_with?('## [v')
3535
# Found the beginning of a release, start reading details
3636
release_details = line
3737
line = file.gets
38-
while line && !line.start_with?('## Vulcan v')
38+
while line && !line.start_with?('## [v')
3939
release_details += line
4040
line = file.gets
4141
end

app/views/devise/sessions/new.html.haml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.col-md-12
66
%h1 Welcome to Vulcan
77
%br/
8-
.row.align-items-center.h-100
8+
.row
99
.col-md-5.order-2.order-md-1
1010
= render 'devise/shared/what_is_vulcan'
1111
.col-md.offset-md-0.offset-lg-1.order-1.order-md-2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"vue-template-compiler": "^2.6.11",
2323
"vue-turbolinks": "^2.1.0"
2424
},
25-
"version": "2.1.3",
25+
"version": "2.1.4",
2626
"devDependencies": {
2727
"eslint": "^8.25.0",
2828
"eslint-config-prettier": "^8.3.0",

0 commit comments

Comments
 (0)