commonmarker 0.19.0 → 0.20.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of commonmarker might be problematic. Click here for more details.

@@ -26,7 +26,6 @@ bufsize_t _scan_link_title(const unsigned char *p);
26
26
  bufsize_t _scan_spacechars(const unsigned char *p);
27
27
  bufsize_t _scan_atx_heading_start(const unsigned char *p);
28
28
  bufsize_t _scan_setext_heading_line(const unsigned char *p);
29
- bufsize_t _scan_thematic_break(const unsigned char *p);
30
29
  bufsize_t _scan_open_code_fence(const unsigned char *p);
31
30
  bufsize_t _scan_close_code_fence(const unsigned char *p);
32
31
  bufsize_t _scan_entity(const unsigned char *p);
@@ -50,7 +49,6 @@ bufsize_t _scan_footnote_definition(const unsigned char *p);
50
49
  #define scan_atx_heading_start(c, n) _scan_at(&_scan_atx_heading_start, c, n)
51
50
  #define scan_setext_heading_line(c, n) \
52
51
  _scan_at(&_scan_setext_heading_line, c, n)
53
- #define scan_thematic_break(c, n) _scan_at(&_scan_thematic_break, c, n)
54
52
  #define scan_open_code_fence(c, n) _scan_at(&_scan_open_code_fence, c, n)
55
53
  #define scan_close_code_fence(c, n) _scan_at(&_scan_close_code_fence, c, n)
56
54
  #define scan_entity(c, n) _scan_at(&_scan_entity, c, n)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CommonMarker
4
- VERSION = '0.19.0'.freeze
4
+ VERSION = '0.20.0'.freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commonmarker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-04-03 00:00:00.000000000 Z
12
+ date: 2019-04-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby-enum