porrima 0.2.0 → 0.2.1

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: 12e94d3fff8b491f17f5cb13beb41d396496816c54995c16be69b3aebdba875f
4
- data.tar.gz: df24fab43b8358f2fcc522b548a1ead14ef53faf365a6601d0bc10c3a798aeed
3
+ metadata.gz: 980ed5bd98192197baedd3aed4c98742c82e805b86fee9398f46ca2c1de5dfb0
4
+ data.tar.gz: 5f788bae42d8cd6420d4663ca52490a7e59a2ad8a06ec02d34539d69baee321d
5
5
  SHA512:
6
- metadata.gz: 24a68e804a09990a553b353e9ca2c547f64ca72cb382a121212ee1222f44b75d17b0ed07ca499a4200539279d245484723e602b43a3bb1972c51cbd86251b81c
7
- data.tar.gz: b61f20f0ea9d25c231e30b1efd01a91152f7e3e76bd69edd3dec00c634c27123fcb15c9d2e4c66a33f35a2207d0b0c72d800cc2c605578ca42b15823a975824c
6
+ metadata.gz: cc589b70eb6b4129da8e0663206d283b586bf54cabd33d6667d2ad0a171e50c69ce2388c35d8b32929ebce1de03fa6e72149daeb049a04261bbd3a79544affd4
7
+ data.tar.gz: 2c6a2a978997338aa81b25911c48d1b3fb58e086e0a2511149b9d6659fb00083d00792eb2c567735c5636d70f6b14202e588b6d8ab423b169fe82d187a619504
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1 — 2026-09-21
4
+
5
+ - Add a deterministic side-by-side diff demo image and regeneration task.
6
+
3
7
  ## 0.2.0 — 2026-09-15
4
8
 
5
9
  - Add zero-based merge output regions for conflict marker blocks.
data/README.md CHANGED
@@ -26,6 +26,8 @@ Porrima turns two or three texts into structured edits, hunks, patches, and
26
26
  merge conflicts. Its core performs no I/O, knows nothing about Git, and leaves
27
27
  color, width, truncation, caching, and other display policy to the caller.
28
28
 
29
+ ![Porrima side-by-side diff](docs/media/screenshot.png)
30
+
29
31
  ## Features
30
32
 
31
33
  - Linear-space Myers diff for lines and inline word or character refinement
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Porrima
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: porrima
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yudai Takada