gitlab_kramdown 0.11.0 → 0.12.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 +7 -0
- data/README.md +15 -7
- data/lib/gitlab_kramdown/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38815de123900c5929fa80d7b8a0c7a70480ba7de26ae0f1ee978ba6a6722e8b
|
4
|
+
data.tar.gz: e4abefe79c91a0a096b47f13384d032f9f17413f39a01926ae5a0e28a049ea76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f22cab0e6ad93ef53f29463ee714871b8cda93abe19064cd58eda38d073ff98d962be0f1b6fb5ca036822d75d06a94eb394ce5e4e51a341e8cb5b04538896207
|
7
|
+
data.tar.gz: 9b2aba078a1b4d3f6a90c0601abd94e8ae6cc8c94406a72f91dd8f036a267276d1b8cfd8f657bda84768e42662d48713efe5227ac8e2448efc462cd3935628bd
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# Changelog
|
2
|
+
|
2
3
|
All notable changes to this project will be documented in this file.
|
3
4
|
|
4
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
@@ -6,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
6
7
|
|
7
8
|
## [Unreleased]
|
8
9
|
|
10
|
+
## [0.12.0]
|
11
|
+
|
12
|
+
### Changed
|
13
|
+
|
14
|
+
- Update Gem dependencies. In particular, Kramdown to version 2.3.1.
|
15
|
+
|
9
16
|
## [0.11.0] - 2021-01-25
|
10
17
|
|
11
18
|
### Changed
|
data/README.md
CHANGED
@@ -75,15 +75,23 @@ Kramdown::Document.new(source, input: 'GitlabKramdown', syntax_highlighter: :rou
|
|
75
75
|
|
76
76
|
- Ruby 2.7
|
77
77
|
|
78
|
+
## Release a new version
|
79
|
+
|
80
|
+
To release a new version of GitLab Kramdown:
|
81
|
+
|
82
|
+
1. Update the `CHANGELOG.md` file for the new version.
|
83
|
+
1. Check `lib/gitlab_kramdown/gitlab_kramdown.rb` is updated for the new version.
|
84
|
+
1. Run `rake release`.
|
85
|
+
|
78
86
|
## Contributing to gitlab_kramdown
|
79
87
|
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
88
|
+
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
89
|
+
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
90
|
+
- Fork the project.
|
91
|
+
- Start a feature/bugfix branch.
|
92
|
+
- Commit and push until you are happy with your contribution.
|
93
|
+
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
94
|
+
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version,
|
87
95
|
or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
88
96
|
|
89
97
|
## Copyright
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_kramdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel Mazetto
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: kramdown
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 2.1
|
103
|
+
version: '2.1'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 2.1
|
110
|
+
version: '2.1'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: simplecov
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -123,19 +123,19 @@ dependencies:
|
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: 0.21.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
|
-
name:
|
126
|
+
name: gitlab-styles
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 1.
|
131
|
+
version: 6.1.0
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 1.
|
138
|
+
version: 6.1.0
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: rspec
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|