Skip to content

Commit 440f9e7

Browse files
committed
Update CHANGELOG and prep for release
1 parent 098e3d4 commit 440f9e7

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## Version 1.2.9 / 2020-08-31
4+
* Avoid warning on uninitialized instance variable (#188)
5+
* Bump rack to 2.2.3 (#190)
6+
* Remove Gemfile.lock
7+
* Resolve outstanding TODO entries (#179)
8+
* A bunch of gem structure cleanup (thanks @olleolleolle)
9+
* Set winning strategy when :warden is thrown (#174)
10+
311
## Version 1.2.8 / 2018-11-15
412

513
* Bugfix: Flips two lines to allow scopes authenticating from another without stepping on each other's toes. (PR #144)

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright (c) 2009-2017 Daniel Neighman
2+
Copyright (c) 2017-2020 Justin Smestad
23

34
Permission is hereby granted, free of charge, to any person obtaining
45
a copy of this software and associated documentation files (the

lib/warden/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# encoding: utf-8
22
# frozen_string_literal: true
33
module Warden
4-
VERSION = "1.2.8"
4+
VERSION = "1.2.9"
55
end

warden.gemspec

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require 'warden/version'
77

88
Gem::Specification.new do |spec|
99
spec.name = "warden"
10-
spec.version = Warden::VERSION.dup
10+
spec.version = Warden::VERSION
1111
spec.authors = ["Daniel Neighman", "Justin Smestad", "Whitney Smestad", "José Valim"]
1212
spec.email = %q{hasox.sox@gmail.com justin.smestad@gmail.com whitcolorado@gmail.com}
1313
spec.homepage = "https://github.com/hassox/warden"
@@ -20,7 +20,6 @@ Gem::Specification.new do |spec|
2020
spec.files = `git ls-files -z`.split("\x0").reject do |f|
2121
f.match(%r{^(test|spec|features)/})
2222
end
23-
spec.rdoc_options = ["--charset=UTF-8"]
2423
spec.require_paths = ["lib"]
2524
spec.add_dependency "rack", ">= 2.0.6"
2625
end

0 commit comments

Comments
 (0)