glottis 0.4.0 → 0.4.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: b19cc9121495467f570a8989b7cbd66aba5069f70bfa7044e36541ae8d407483
4
- data.tar.gz: a854ee9fe9e2cfa2b0969e495b9853884738d202e7a1b21ccae2f8b36bc7f9e6
3
+ metadata.gz: cbc357e1258fd3dafb205cf7516918290a83f168a50bea6ea27b251ee5fff89d
4
+ data.tar.gz: 7390b269ea50726f631f1315cad2620e06192c0769efc24d95da09c735e7ed48
5
5
  SHA512:
6
- metadata.gz: dc5f81d11d5ab1a4fee50a7e1384534799abb05d24ea34c47460d8c05d07834f3ce3a5684a945f824315d8e9df83e11fe67df1511b0dee8d08000b486eb090e6
7
- data.tar.gz: 2de12c2620eda6634c55775794408f6569aaab040cfaa64de49639f17e7434d8dce573582b5e5cc7cd6f6fecca794a12aec10559c63f8a45d87f153fc9525269
6
+ metadata.gz: 1779ab3291678ed3b9fb52e537f2362f2d70b8ca83132db41685676df001f3d632fb858ed3408274ecf78dda20f64969824dd1dca793a1dc2dedb216489b59e2
7
+ data.tar.gz: 81de67b3295200ac4108f4b691c78e5f41a308171bfce76facdabe7c31c64ec98bb908e17dff76025483b4afd7bd5b7c365ca192e76d62f66950e5fab9f4f075
data/CHANGELOG.md CHANGED
@@ -5,13 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semmle.com/semver/1.0.0/).
7
7
 
8
- ## [0.4.0] - 2026-07-24
8
+ ## [0.4.1] - 2026-07-24
9
9
 
10
10
  ### Changed
11
- - Minor version release for full Ruby 3.4+ compatibility and modernized dependency stack.
11
+ - Production release with Ruby 3.4+ compatibility, GitHub Actions CI, and live Valyx server integration.
12
+ - Added GitHub Release badge and explicit `Content-Type: application/json` headers.
12
13
  - Enhanced `RemoteInputHandler` with Server-Sent Events (SSE) stream parsing (`data: {...}`).
13
14
  - Enhanced `RemoteOutputHandler` with automatic session cookie forwarding (`SID`) and strict JSON payload formatting (`{"to": "*", "body": "..."}`).
14
- - Verified live end-to-end message streaming against the modernized Valyx server.
15
+
16
+ ## [0.4.0] - 2026-07-24
17
+
18
+ ### Changed
19
+ - Minor version release for full Ruby 3.4+ compatibility and modernized dependency stack.
15
20
 
16
21
  ## [0.3.1] - 2026-07-24
17
22
 
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  A CLI for the [valyx](https://github.com/maxdeliso/valyx) message passing server.
4
4
 
5
5
  [![CI](https://github.com/maxdeliso/glottis/actions/workflows/ci.yml/badge.svg)](https://github.com/maxdeliso/glottis/actions/workflows/ci.yml)
6
+ [![GitHub Release](https://img.shields.io/github/v/release/maxdeliso/glottis)](https://github.com/maxdeliso/glottis/releases/latest)
6
7
  [![Gem Version](https://badge.fury.io/rb/glottis.svg)](https://badge.fury.io/rb/glottis)
7
8
 
8
9
  ## Requirements
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Glottis
4
- VERSION = '0.4.0'
4
+ VERSION = '0.4.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glottis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max DeLiso