Skip to content

Commit fcfa27a

Browse files
committed
Bump version: 0.2.1 β†’ 0.2.2
1 parent 4da0bdf commit fcfa27a

10 files changed

Lines changed: 10 additions & 10 deletions

File tree

β€Ž.bumpversion.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.1
2+
current_version = 0.2.2
33

44
[bumpversion:file:Cargo.toml]
55
search = version = "{current_version}"

β€ŽAGENT.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Or as a feature of the root `lmm` crate:
1414

1515
```toml
1616
[dependencies]
17-
lmm = { version = "0.2.1", features = ["agent"] }
17+
lmm = { version = "0.2.2", features = ["agent"] }
1818
```
1919

2020
## πŸ—οΈ Core Architecture

β€ŽCITATION.cffβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: LMM
44
abstract: Large Mathematical Model: a revolutionary training-free framework for text generation that replaces gradient descent and neural networks with pure mathematics and stochastic determinism.
55
authors:
66
- name: "Mahmoud Harmouch"
7-
version: v0.2.1
7+
version: v0.2.2
88
date-released: "2026-04-20"
99
license: MIT
1010
repository-code: "https://github.com/wiseaidotdev/lmm"

β€ŽCargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ quote = "1.0.45"
3939
proc-macro2 = "1.0.106"
4040
lmm-derive = { version = "0.0.2", path = "./lmm-derive" }
4141
lmm-agent = { version = "0.0.3", path = "./lmm-agent" }
42-
lmm = { version = "0.2.1", path = "./lmm" }
42+
lmm = { version = "0.2.2", path = "./lmm" }
4343

4444
[profile.dev]
4545
split-debuginfo = "off"

β€ŽRUST.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add this to your `Cargo.toml`:
88

99
```toml
1010
[dependencies]
11-
lmm = "0.2.1"
11+
lmm = "0.2.2"
1212
```
1313

1414
### Cargo Features

β€ŽWASM.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add `lmm` to your `Cargo.toml` with the appropriate feature set. Avoid enabling
1616

1717
```toml
1818
[dependencies]
19-
lmm = { version = "0.2.1", default-features = false, features = ["wasm-net"] }
19+
lmm = { version = "0.2.2", default-features = false, features = ["wasm-net"] }
2020
```
2121

2222
Build with Trunk (Yew / Leptos):

β€Žlmm-agent/README.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Or enable it as a feature from the root `lmm` workspace:
3333

3434
```toml
3535
[dependencies]
36-
lmm = { version = "0.2.1", features = ["agent"] }
36+
lmm = { version = "0.2.2", features = ["agent"] }
3737
```
3838

3939
## πŸš€ Quick Start

β€Žlmm/Cargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lmm"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2024"
55
authors = ["Mahmoud Harmouch <oss@wiseai.dev>"]
66
license = "MIT"

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wiseaidev/lmm",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"main": "index.js",
55
"types": "index.d.ts",
66
"bin": {

β€Žpython/lmm/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from ._lmm import *
22

3-
__version__ = "0.2.1"
3+
__version__ = "0.2.2"

0 commit comments

Comments
Β (0)