hoe-markdown 1.1.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce520b63c1184218d2a6b46c26a9586db8cd5b1fae30f21fa705d09fb315328f
4
- data.tar.gz: 63e11707456a92be22603e0ca5b3f663180971e8dad65d0015c46048fe308bf1
3
+ metadata.gz: bf9a6074da2a981e30084b7dd2f80f2d0e7d809351511e5f84459c9efdce7278
4
+ data.tar.gz: 35aa2d0edbcb62fd2d080eed18fbe108512027cbe16c7bfa2eb3da2ba1cb32a8
5
5
  SHA512:
6
- metadata.gz: 421b5f029b0a244d2261afa90ee244224c7a085eb3e771ce2e0199a66cfc6f1b2a5a34c89678c9af4f195c68e56ece0b55d0733c42c0a422610212ff883ddf57
7
- data.tar.gz: 06c28bbd90c17d2e2f62574c8ddb924790c54cfdd82a9d073b5532849a6469ded20f2199a31131b10182df0784d1b11c3474d6e5fa2860640180c4157ea429ac
6
+ metadata.gz: cede2c0ad7e980d5f9d5ebb4b2daf577c191aab523dae0a6af1c28be3aa0b7549357530e0eb78d81f463d17fd51f999c5380f4ccacd57835c91f7817a6003fd6
7
+ data.tar.gz: eb4d6e81582ad7dca15338f1c90a4323a9a8405a923f960207f99a6a1ee43ee9fee823deaa7fd1261b318b6ff106ecff72beeab8752e5a8d5a0d1c9394de5cb0
@@ -1,5 +1,11 @@
1
1
  # Hoe::Markdown CHANGELOG
2
2
 
3
+ ## v1.2.0 / 2020-06-16
4
+
5
+ Fix:
6
+ * ensure idempotency on github usernames with dashes
7
+
8
+
3
9
  ## v1.1.0 / 2020-06-07
4
10
 
5
11
  Fix:
@@ -24,7 +24,7 @@ class Hoe
24
24
  (?!\][\(\[])
25
25
 
26
26
  # don't truncate the username to meet the previous negative lookahead
27
- (?![[[:alnum:]]])
27
+ (?![[[:alnum:]]-])
28
28
  }x
29
29
 
30
30
  def self.linkify_github_issues(markdown, issues_uri)
@@ -1,5 +1,5 @@
1
1
  class Hoe
2
2
  module Markdown
3
- VERSION = "1.1.0"
3
+ VERSION = "1.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-07 00:00:00.000000000 Z
11
+ date: 2020-06-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Hoe plugin with markdown helpers, for example to hyperlink github issues
14
14
  and github usernames in markdown files.