einvoicing 0.8.0 → 0.8.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 +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/einvoicing/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 548238110199faaae0ccfe8c7b278169728edb8b57dfb84ae10ba5d871c5e883
|
|
4
|
+
data.tar.gz: 8a517b11240b33c5f6a80d3fc05db58f7c4531a1375fb72ceb4bc790b284f68c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc6e9095689ef5485eba2d52cc576dc6e144f11eaff51ea00128a4608342778d97366cf4d0689632233dc9019bcd3b076bf886340800df0bd8d18855dbbc3b43
|
|
7
|
+
data.tar.gz: b959a718712cddeb2efd777570b7d780038bc881ee9232be0e99a39bf62a648db5cc1a23730077abea5624f80dcc62fbfb9ba64df4fde97bf64e21f00b8afad5
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.8.1] - 2026-07-25
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Packaged files are no longer shipped with the maintainer's private file mode. `gem build` copies each file's mode from the working tree and git records only the executable bit, so files sitting at 0600 in a checkout shipped as 0600 and the gem failed to load for any non-root user — `cannot load such file -- .../lib/einvoicing/errors`. Affects every release built from a checkout with a restrictive umask; a spec now fails the build before such a gem can be pushed
|
|
14
|
+
|
|
10
15
|
## [0.8.0] - 2026-07-25
|
|
11
16
|
|
|
12
17
|
### Added
|
|
@@ -107,7 +112,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
107
112
|
- Zero runtime dependencies beyond hexapdf (stdlib-only XML generation via internal builder)
|
|
108
113
|
- RSpec test suite
|
|
109
114
|
|
|
110
|
-
[Unreleased]: https://github.com/sxnlabs/einvoicing/compare/v0.8.
|
|
115
|
+
[Unreleased]: https://github.com/sxnlabs/einvoicing/compare/v0.8.1...HEAD
|
|
116
|
+
[0.8.1]: https://github.com/sxnlabs/einvoicing/compare/v0.8.0...v0.8.1
|
|
111
117
|
[0.8.0]: https://github.com/sxnlabs/einvoicing/compare/v0.7.1...v0.8.0
|
|
112
118
|
[0.7.1]: https://github.com/sxnlabs/einvoicing/compare/v0.7.0...v0.7.1
|
|
113
119
|
[0.1.0]: https://github.com/sxnlabs/einvoicing/releases/tag/v0.1.0
|
data/lib/einvoicing/version.rb
CHANGED