Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c49850c

Browse files
committed
docs: initialize CHANGELOG.md and reset version to v0.1.0
1 parent 80592a3 commit c49850c

5 files changed

Lines changed: 24 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.1.0] - 2026-02-19
9+
10+
### Added
11+
- **Nexus Broker**: Core service for managing OAuth 2.0 and OIDC connections.
12+
- **Nexus Gateway**: Public-facing API gateway for agents.
13+
- **Nexus Bridge**: Go library for integrating agents with the Nexus framework.
14+
- **Documentation**: Comprehensive guides for architecture, deployment, and integration.
15+
- **Versioning**: Centralized version management via `VERSION` file.
16+
17+
### Changed
18+
- Initial project release.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.0.0
1+
v0.1.0

nexus-bridge/telemetry/metrics_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ func TestNewMetrics_WithLabels(t *testing.T) {
1010
registry := prometheus.NewRegistry()
1111
agentLabels := map[string]string{
1212
"agent_id": "test-agent",
13-
"version": "1.0.0",
13+
"version": "0.1.0",
1414
}
1515

1616
m := NewMetrics(registry, agentLabels)
@@ -42,8 +42,8 @@ func TestNewMetrics_WithLabels(t *testing.T) {
4242
if labelMap["agent_id"] != "test-agent" {
4343
t.Errorf("expected agent_id=test-agent, got %s", labelMap["agent_id"])
4444
}
45-
if labelMap["version"] != "1.0.0" {
46-
t.Errorf("expected version=1.0.0, got %s", labelMap["version"])
45+
if labelMap["version"] != "0.1.0" {
46+
t.Errorf("expected version=0.1.0, got %s", labelMap["version"])
4747
}
4848

4949
if m.GetCounter().GetValue() != 1 {

nexus-broker/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: Nexus Broker API
4-
version: 1.0.0
4+
version: 0.1.0
55
description: |
66
Internal API for the Nexus Broker service.
77
This service handles OAuth 2.0 and OIDC flows, encrypts tokens, and manages provider configurations.

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: Nexus Gateway API
4-
version: 1.0.0
4+
version: 0.1.0
55
description: |
66
Stable v1 contract for the Nexus Gateway. This spec freezes the agent-facing endpoints.
77
Breaking changes require a new major version (e.g., /v2). Additive changes only in v1.

0 commit comments

Comments
 (0)