Skip to content

Commit 1670f4b

Browse files
committed
Bump to 6.1.0 and readd VERSION constant
1 parent 647dcc4 commit 1670f4b

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.2
1+
2.6.1

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.1
2+
3+
Adds support for navigate-to, prefetch-src, and require-sri-for #395
4+
15
## 6.0
26

37
- See the [upgrading to 6.0](docs/upgrading-to-6-0.md) guide for the breaking changes.

lib/secure_headers/version.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module SecureHeaders
2+
VERSION = "6.1.0"
3+
end

secure_headers.gemspec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1+
lib = File.expand_path("../lib", __FILE__)
2+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3+
require "secure_headers/version"
4+
15
# -*- encoding: utf-8 -*-
26
# frozen_string_literal: true
37
Gem::Specification.new do |gem|
48
gem.name = "secure_headers"
5-
gem.version = "6.0.0"
9+
gem.version = SecureHeaders::VERSION
610
gem.authors = ["Neil Matatall"]
711
gem.email = ["[email protected]"]
812
gem.description = "Manages application of security headers with many safe defaults."

0 commit comments

Comments
 (0)