antares 0.2.1 → 0.2.2

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: bc8ef85951928394e098f70eb7f193529561862db09ec04ea9911da83d7cb532
4
- data.tar.gz: 6c7cfe7089d8b8f02152f95607d54c64c5272698e4715f894b7b0c725c3a289b
3
+ metadata.gz: 1c2ea1e51f704d6c2181103ad704401abb9977724f6139c02df420bdb711f71d
4
+ data.tar.gz: fe214d18846dfa84a061ea93dc35415a92597f6b376469251333fb45b9a19b9e
5
5
  SHA512:
6
- metadata.gz: 85f58196e7c5c78f3589a8fdeb5082e44ba50ad81f2f795412c5dd0f8b5c139d181a686b9418f2c77dff7118d05aabf5c62108afd0dec986a101ae19f7acc036
7
- data.tar.gz: bd7f8e25aaee6226972f9e0407e228b02610f17ae8a0c77ccf5805d281bce03acfb9d8b5fca02f0115af4494779444b4a479e4270b68ec4fd7c36539cb725913
6
+ metadata.gz: 38f5e5db511a43618e51175b2440addf02ccd8c2cd5d3b5607b66520f391924d47979a2d565f0e4a2375a3d492ed79cb5e8c255c469a16e136d446f73fdcd32a
7
+ data.tar.gz: 7aae8c8a2e1e0159f15e0d794906cd6262b95b46f95a4b3437761ffb71ea9be935a42571c013142de99d9b440895db4ccbf9c35760f92ba427d4b0801440bc9c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.2 — 2026-09-21
4
+
5
+ - Add a deterministic syntax-highlighting demo image and regeneration task.
6
+
3
7
  ## 0.2.1 — 2026-09-16
4
8
 
5
9
  - Keep expanding-selection columns within CRLF line content.
data/README.md CHANGED
@@ -24,6 +24,8 @@
24
24
 
25
25
  Antares adds edit-aware, line-oriented syntax highlighting to [Rouge](https://github.com/rouge-ruby/rouge). It reuses lexer state where compatibility tests show that incremental highlighting is safe, and falls back to bounded re-highlighting for other lexers. Document storage and colors remain with the caller.
26
26
 
27
+ ![Antares syntax highlighting](docs/media/screenshot.png)
28
+
27
29
  ## Features
28
30
 
29
31
  <a name="features"></a>
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Antares
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: antares
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yudai Takada