Skip to content

Commit 49261fc

Browse files
authored
Merge pull request #35 from increments/release-v0.23.6.1
Release v0.23.6.1
2 parents 8b09d94 + 63c69ca commit 49261fc

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

.rubocop_todo.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config --exclude-limit 999999`
3-
# on 2022-10-03 03:50:46 UTC using RuboCop version 1.36.0.
3+
# on 2022-11-10 05:33:40 UTC using RuboCop version 1.38.0.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
77
# versions of RuboCop, may require this file to be generated again.
88

9+
# Offense count: 42
10+
# This cop supports safe autocorrection (--autocorrect).
11+
Minitest/EmptyLineBeforeAssertionMethods:
12+
Exclude:
13+
- 'test/test_basics.rb'
14+
- 'test/test_commands.rb'
15+
- 'test/test_doc.rb'
16+
- 'test/test_encoding.rb'
17+
- 'test/test_extensions.rb'
18+
- 'test/test_gc.rb'
19+
- 'test/test_linebreaks.rb'
20+
- 'test/test_maliciousness.rb'
21+
- 'test/test_node.rb'
22+
- 'test/test_pathological_inputs.rb'
23+
- 'test/test_renderer.rb'
24+
- 'test/test_smartpunct.rb'
25+
- 'test/test_spec.rb'
26+
- 'test/test_tasklists.rb'
27+
928
# Offense count: 3
1029
# This cop supports safe autocorrection (--autocorrect).
1130
# Configuration parameters: EnforcedStyle.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
### Changed
88

9+
## 0.23.6.1 - 2022-11-10
10+
11+
- Finish testing phase and release official version.
12+
913
## 0.23.6.0 - 2022-10-04
1014

1115
### Changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
[![Build Status](https://github.com/increments/qiita-marker/actions/workflows/test.yml/badge.svg)](https://github.com/increments/qiita-marker/actions/workflows/test.yml) [![Gem Version](https://badge.fury.io/rb/qiita_marker.svg)](https://badge.fury.io/rb/qiita_marker)
44

5-
:warning: This library is still in the testing phase. As such, development may be halted.
6-
75
Qiita Marker is a Ruby library for Markdown processing, based on [CommonMarker](https://github.com/gjtorikian/commonmarker).
86
It will be a core module of [Qiita Markdown](https://github.com/increments/qiita-markdown) gem and not intended for direct use. If you are looking for Qiita-specified markdown processor, use [Qiita Markdown](https://github.com/increments/qiita-markdown) gem.
97

lib/qiita_marker/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module QiitaMarker
4-
VERSION = "0.23.6.0"
4+
VERSION = "0.23.6.1"
55
end

0 commit comments

Comments
 (0)