linzer 0.7.7.beta1 → 0.7.7

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: 4a0c6679a12f4d81ad0c404c0250e968540434ef2ea973c0d15efc946b337ec8
4
- data.tar.gz: e6ab100316577c1f5b4c0b407ba6a23bb9815dc944f0cbd88d664f86a1601ae9
3
+ metadata.gz: fcae916cefddaddfc6fd6b58ab110eceda2225e5b525c984fa20eba378d80262
4
+ data.tar.gz: 896938aeafbca006f944a950bd0151df60f960ee7541ee98fe6aff2ffee9754f
5
5
  SHA512:
6
- metadata.gz: 4c90ad154c524fe517baf299cae1071b890071db735c2ea5f029f5c471f7cc652ce301675d7a20223dad3b18b923f60bdd9cfb1c5ed4e5896f06fa66e37ad3cf
7
- data.tar.gz: 3503fb59e52628fcb2df866045b95731b823a0e31df79e07e419e088f19707a42b6f36d8cccb1e6c8e20cc5f071dc16e5de986b2a5927c208a26ffff82cb5538
6
+ metadata.gz: 89b1873e0664d7048142c9a16fd5414f3f568eeb01a3396d194398efa59e9e1bd40596096a433be17fa6635be9850cb641cd48b79d8ac99efe21d128c822337f
7
+ data.tar.gz: 61a79c4ef12ae7fbf74da3c0d99786caaa010255d099bb7c73319308a86895a4b5d531254f4bd3a7f78fb15aec1cc96f01bb02f83fa45313bae0c8910ca45b1b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.7.7] - 2025-07-08
4
+
5
+ (No changes since the last beta release, this new stable release just
6
+ bundles all the features/changes introduced during 0.7.7.beta1 release)
7
+
8
+ - Introduce generic adapters for typical requests and responses.
9
+ This allows adapter classes to stop inheriting functionality from totally
10
+ unrelated implementations by relying on a saner hierarchy class.
11
+
3
12
  ## [0.7.7.beta1] - 2025-07-07
4
13
 
5
14
  - Introduce generic adapters for typical requests and responses.
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 Miguel Landaeta <miguel@miguel.cc>
3
+ Copyright (c) 2024-2025 Miguel Landaeta <miguel@miguel.cc>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Linzer
4
- VERSION = "0.7.7.beta1"
4
+ VERSION = "0.7.7"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linzer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.7.beta1
4
+ version: 0.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Landaeta