usmu 1.3.0.dev → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/Rakefile +1 -1
- data/lib/usmu/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 278fdf99bee6cdcc7e63997b7a3e10f2e85cdc0b
|
|
4
|
+
data.tar.gz: 24d4beb2f6fd199d8dcc76eb92dd49bf5b17244c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 007ceabd71a6c5d26677a08e5d2a2ece75d5a7e909fdea8ad2710febfc31e2acaa12ded407fc89a5b118e70781b428e1c2b7082c3eabf75ac6f126e7cd3ce2e2
|
|
7
|
+
data.tar.gz: 707ac6fcb658f88810ad7f8f1b3c0b897ad155578e3b58be403b7d8190eb02e5ecfea4d0b17b4d718d78d2068b17cd057adfc316734d1242a2e64680fe336680
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Usmu Change Log
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
Matthew Scharley <matt.scharley@gmail.com>
|
|
6
|
+
|
|
7
|
+
* Fix gem builds to work inside bundler (cb2acde15c38059eec24b677bc0d9d22df8712d1)
|
|
8
|
+
* [\[#36\]][GH-36] Render static files as binary files. (61bf502b3214323fe013fa060dcab5c0574338d9)
|
|
9
|
+
* [\[#37\]][GH-37] Add SIGINT handling for usmu serve (d316570b5087270a2b3d54d7be9be58b0c0e0326)
|
|
10
|
+
* [\[#35\]][GH-35] Don't cache SiteGenerators (13ca469c4f09c7be439d253eddc413f9210bd5bd)
|
|
11
|
+
|
|
3
12
|
## 1.2.2
|
|
4
13
|
|
|
5
14
|
Matthew Scharley <matt.scharley@gmail.com>
|
data/Rakefile
CHANGED
|
@@ -94,7 +94,7 @@ desc 'generate changelog with nice clean output'
|
|
|
94
94
|
task :changelog, :since_c, :until_c do |t,args|
|
|
95
95
|
since_c = args[:since_c] || `git tag | egrep '^[0-9]+\\.[0-9]+\\.[0-9]+\$' | sort -Vr | head -n 1`.chomp
|
|
96
96
|
until_c = args[:until_c]
|
|
97
|
-
cmd=`git log --pretty=
|
|
97
|
+
cmd=`git log --pretty="format:%ci::::%an <%ae>::::%s::::%H" #{since_c}..#{until_c}`
|
|
98
98
|
|
|
99
99
|
entries = Hash.new
|
|
100
100
|
changelog_content = "\#\# #{Usmu::VERSION}\n\n"
|
data/lib/usmu/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: usmu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.0
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Scharley
|
|
@@ -367,9 +367,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
367
367
|
version: '2.0'
|
|
368
368
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
369
369
|
requirements:
|
|
370
|
-
- - "
|
|
370
|
+
- - ">="
|
|
371
371
|
- !ruby/object:Gem::Version
|
|
372
|
-
version:
|
|
372
|
+
version: '0'
|
|
373
373
|
requirements: []
|
|
374
374
|
rubyforge_project:
|
|
375
375
|
rubygems_version: 2.4.5.1
|