Skip to content

Commit 5e6237d

Browse files
committed
Bump version: 0.2.5 β†’ 0.2.6
1 parent 5f8e0df commit 5e6237d

9 files changed

Lines changed: 9 additions & 9 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.5
2+
current_version = 0.2.6
33

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

β€Ž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.5
7+
version: v0.2.6
88
date-released: "2026-04-20"
99
license: MIT
1010
repository-code: "https://github.com/wiseaidotdev/lmm"

β€Ž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
@@ -40,7 +40,7 @@ quote = "1.0.45"
4040
proc-macro2 = "1.0.106"
4141
lmm-derive = { version = "0.0.2", path = "./lmm-derive" }
4242
lmm-agent = { version = "0.1.1", path = "./lmm-agent" }
43-
lmm = { version = "0.2.5", path = "./lmm" }
43+
lmm = { version = "0.2.6", path = "./lmm" }
4444

4545
[profile.dev]
4646
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.5"
11+
lmm = "0.2.6"
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.5", default-features = false, features = ["wasm-net"] }
19+
lmm = { version = "0.2.6", default-features = false, features = ["wasm-net"] }
2020
```
2121

2222
Build with Trunk (Yew / Leptos):

β€Ž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.5"
3+
version = "0.2.6"
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.5",
3+
"version": "0.2.6",
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.5"
3+
__version__ = "0.2.6"

0 commit comments

Comments
Β (0)