umans-gate 0.1.0 → 0.1.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.
- package/CHANGELOG.md +7 -0
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] - 2026-07-14
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fix `repository.url` in `package.json` to point to `codegiveness/umans-gate`
|
|
15
|
+
(was `umans-ai/umans-gate` — npm page linked to wrong repo).
|
|
16
|
+
|
|
10
17
|
## [0.1.0] - 2026-07-10
|
|
11
18
|
|
|
12
19
|
### Added
|
package/dist/cli.js
CHANGED
|
@@ -1019,7 +1019,7 @@ import { Command } from "commander";
|
|
|
1019
1019
|
// package.json
|
|
1020
1020
|
var package_default = {
|
|
1021
1021
|
name: "umans-gate",
|
|
1022
|
-
version: "0.1.
|
|
1022
|
+
version: "0.1.1",
|
|
1023
1023
|
description: "LLM capture proxy with Anthropic cache_control TTL stamping and live inspection dashboard",
|
|
1024
1024
|
type: "module",
|
|
1025
1025
|
license: "MIT",
|
|
@@ -1031,7 +1031,7 @@ var package_default = {
|
|
|
1031
1031
|
homepage: "https://github.com/umans-ai/umans-gate",
|
|
1032
1032
|
repository: {
|
|
1033
1033
|
type: "git",
|
|
1034
|
-
url: "git+https://github.com/
|
|
1034
|
+
url: "git+https://github.com/codegiveness/umans-gate.git"
|
|
1035
1035
|
},
|
|
1036
1036
|
bugs: {
|
|
1037
1037
|
url: "https://github.com/umans-ai/umans-gate/issues"
|