content_block_tools 0.12.2 → 0.12.3

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: 2a3d284308ecfac92b7c39739db61d4897edd0c185087aa5a307be162e663cc0
4
- data.tar.gz: 276d0984c5e5c15b2cebcd1a8cf1beb8ad1a92571ab5b087917ad1fb65e90851
3
+ metadata.gz: ffcf86d3e5ce3ef453816f71cf7885cdce734a7209aa637daecd68bbf9e06d87
4
+ data.tar.gz: 34588cff605b66d7c0c990b895563a887566a64e286ab0e7a697db055c502006
5
5
  SHA512:
6
- metadata.gz: 866336c803901cad6a3328343db12db865ba2e256802702f85364fa66f589747a62dee09af69dd34af8969ee381c44cb5b933c0774bba29f2c84a55eb1f01161
7
- data.tar.gz: d2db11eebab075a70f9b688954cb1b341317284100470fefaf9a7e746ae0c80d69342c307208a089903e3c588974a6bae5630e469458cc7ea2c92a16e9e5b6ae
6
+ metadata.gz: bd5e069d2e1bff4cf850a21c210acb1953e452e072c201a72149d1f558a8d0c85143c21ed5ebd793c153176849cfdcc932307d918703a2d7881aafaa7c58c764
7
+ data.tar.gz: 52dca047764a2d73e44596c46ae540c73f245525bdb6a9ad890bd789520784b75081a43eaee4abdfd905de6eb00306c1611c12f1d00fceaa1a426f6e68b379af
data/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@
7
7
  useful summary for people upgrading their application, not a replication
8
8
  of the commit log.
9
9
 
10
+ ## 0.12.3
11
+
12
+ - Only replace special dashes in identifiers ([69](https://github.com/alphagov/govuk_content_block_tools/pull/69))
13
+
10
14
  ## 0.12.2
11
15
 
12
16
  - Add escape character to silence warnings ([65](https://github.com/alphagov/govuk_content_block_tools/pull/65))
@@ -65,7 +65,7 @@ module ContentBlockTools
65
65
  # triple dashes with em dashes
66
66
  def prepare_match(match)
67
67
  [
68
- replace_dashes(match[0]),
68
+ match[0],
69
69
  match[1],
70
70
  replace_dashes(match[2]),
71
71
  match[3],
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ContentBlockTools
4
- VERSION = "0.12.2"
4
+ VERSION = "0.12.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: content_block_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.2
4
+ version: 0.12.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - GOV.UK Dev