File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## [ Unrelease]
8+
9+ ### Added
10+ -
11+
12+ ### Changed
13+ - Switch version handling to ` git describe `
14+ - Depend on Jekyll min 4.2
15+
16+ ### Fixed
17+ - assign syntax in README
18+
719## [ 3.2.0] - 2022-02-28
820### Added
921- Support for Ruby 3
Original file line number Diff line number Diff line change 11# coding: utf-8
22VERSION = '3.2.0'
3- RELEASE_VERSION = case
4- when ENV [ 'TRAVIS' ] && ENV [ 'TRAVIS_BRANCH' ] . match ( /^master$/i ) then "#{ VERSION } "
5- when ENV [ 'TRAVIS' ] && ENV [ 'TRAVIS_BRANCH' ] . match ( /^develop$/i ) then "#{ VERSION } -#{ ENV [ 'TRAVIS_BRANCH' ] } .#{ ENV [ 'TRAVIS_BUILD_NUMBER' ] } "
6- else "#{ VERSION } -local"
7- end
3+ RELEASE_VERSION = `git describe --tags --dirty --always`
84
95Gem ::Specification . new do |s |
106 s . name = 'jekyll-rdf'
You can’t perform that action at this time.
0 commit comments