Skip to content

Commit 2c143d7

Browse files
committed
Bump version to v1.1.0 and update docs
1 parent b65653c commit 2c143d7

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

ARCHITECTURE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,13 +332,13 @@ Library users can select minimal features based on their needs:
332332

333333
```toml
334334
# Minimal database access
335-
monocle = { version = "1.0", default-features = false, features = ["database"] }
335+
monocle = { version = "1.1", default-features = false, features = ["database"] }
336336

337337
# BGP operations without CLI overhead
338-
monocle = { version = "1.0", default-features = false, features = ["lens-bgpkit"] }
338+
monocle = { version = "1.1", default-features = false, features = ["lens-bgpkit"] }
339339

340340
# Full functionality without CLI
341-
monocle = { version = "1.0", default-features = false, features = ["lens-full"] }
341+
monocle = { version = "1.1", default-features = false, features = ["lens-full"] }
342342
```
343343

344344
## Related Documents
@@ -349,4 +349,4 @@ monocle = { version = "1.0", default-features = false, features = ["lens-full"]
349349
- `src/server/README.md` — WebSocket API protocol specification
350350
- `src/database/README.md` — database module notes
351351
- `src/lens/README.md` — lens module patterns and conventions
352-
- `examples/README.md` — example code organized by feature tier
352+
- `examples/README.md` — example code organized by feature tier

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## Unreleased
5+
## v1.1.0 - 2025-12-18
66

77
### New Features
88

@@ -73,7 +73,7 @@ All notable changes to this project will be documented in this file.
7373
* Tests for schema version verification
7474
* Tests for RPKI and Pfx2as mock data storage/retrieval
7575

76-
## v1.0.1 - 2025-12-18
76+
## v1.0.1 - 2025-12-17
7777

7878
### Bug Fixes
7979

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "monocle"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Mingwei Zhang <mingwei@bgpkit.com>"]
55
edition = "2021"
66
readme = "README.md"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ Monocle can also be used as a library in your Rust projects. Add it to your `Car
6868
```toml
6969
[dependencies]
7070
# Full library with CLI argument support (default)
71-
monocle = "1.0"
71+
monocle = "1.1"
7272

7373
# Minimal database access only
74-
monocle = { version = "1.0", default-features = false, features = ["database"] }
74+
monocle = { version = "1.1", default-features = false, features = ["database"] }
7575

7676
# BGP operations without CLI overhead
77-
monocle = { version = "1.0", default-features = false, features = ["lens-bgpkit"] }
77+
monocle = { version = "1.1", default-features = false, features = ["lens-bgpkit"] }
7878

7979
# Full functionality without CLI
80-
monocle = { version = "1.0", default-features = false, features = ["lens-full"] }
80+
monocle = { version = "1.1", default-features = false, features = ["lens-full"] }
8181
```
8282

8383
### Feature Tiers

examples/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Examples requiring the full CLI/Server feature set.
9595

9696
```toml
9797
[dependencies]
98-
monocle = { version = "1.0", default-features = false, features = ["database"] }
98+
monocle = { version = "1.1", default-features = false, features = ["database"] }
9999
```
100100

101101
```rust
@@ -112,7 +112,7 @@ let rels = db.as2rel().search_asn(13335)?;
112112

113113
```toml
114114
[dependencies]
115-
monocle = { version = "1.0", default-features = false, features = ["lens-core"] }
115+
monocle = { version = "1.1", default-features = false, features = ["lens-core"] }
116116
```
117117

118118
```rust
@@ -127,7 +127,7 @@ let results = lens.parse(&args)?;
127127

128128
```toml
129129
[dependencies]
130-
monocle = { version = "1.0", default-features = false, features = ["lens-bgpkit"] }
130+
monocle = { version = "1.1", default-features = false, features = ["lens-bgpkit"] }
131131
```
132132

133133
```rust
@@ -149,7 +149,7 @@ println!("{}: {}", result.state, result.reason);
149149

150150
```toml
151151
[dependencies]
152-
monocle = { version = "1.0", default-features = false, features = ["lens-full"] }
152+
monocle = { version = "1.1", default-features = false, features = ["lens-full"] }
153153
```
154154

155155
```rust

src/server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Returns protocol/server metadata so web/native clients can adapt without hardcod
238238
"type": "result",
239239
"data": {
240240
"protocol_version": 1,
241-
"server_version": "1.0.0",
241+
"server_version": "1.1.0",
242242
"build": {
243243
"git_sha": "unknown",
244244
"timestamp": "unknown"

0 commit comments

Comments
 (0)