Skip to content

Commit 3c7684a

Browse files
committed
chore(release): v1.4.3
1 parent c5ef423 commit 3c7684a

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ Most video summarizers hide the result in a web app. NoteWise is built for peopl
8383

8484
## Source-backed defaults
8585

86-
These docs track NoteWise `1.4.2`. Source defaults are Python `>=3.11`, model `gemini/gemini-2.5-flash`, output directory `./output`, output format `md`, temperature `0.7`, max concurrent videos `5`, YouTube request limit `10/min`, chunk size `4000`, overlap `200`, and max concurrent chapters `3`.
86+
These docs track NoteWise `1.4.3`. Source defaults are Python `>=3.11`, model `gemini/gemini-2.5-flash`, output directory `./output`, output format `md`, temperature `0.7`, max concurrent videos `5`, YouTube request limit `10/min`, chunk size `4000`, overlap `200`, and max concurrent chapters `3`.

docs/llms-full.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
NoteWise is a Python CLI (`>=3.11`) that converts YouTube videos, playlists, and batch files into local study materials. It reads metadata and transcripts, sends content through a LiteLLM-backed model, and writes files the user controls: Markdown notes by default, with optional HTML, PDF, DOCX, quizzes, and transcript exports.
44

5-
Current documented version: `1.4.2`.
5+
Current documented version: `1.4.3`.
66

77
Canonical public docs base: `https://notewise.click/docs`
88

docs/llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NoteWise docs for LLMs
22

3-
NoteWise is a Python CLI (`>=3.11`) that converts YouTube videos, playlists, and batch files into local study notes through LiteLLM providers. Current documented version: `1.4.2`.
3+
NoteWise is a Python CLI (`>=3.11`) that converts YouTube videos, playlists, and batch files into local study notes through LiteLLM providers. Current documented version: `1.4.3`.
44

55
Canonical public docs base: `https://notewise.click/docs`
66

docs/skill.md

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

1111
# NoteWise Agent Skill
1212

13-
Use this when answering questions about NoteWise `1.4.2`.
13+
Use this when answering questions about NoteWise `1.4.3`.
1414

1515
Canonical public docs base: `https://notewise.click/docs`.
1616

@@ -37,7 +37,7 @@ Canonical public docs base: `https://notewise.click/docs`.
3737

3838
## Defaults
3939

40-
- Version: `1.4.2`
40+
- Version: `1.4.3`
4141
- Python: `>=3.11`
4242
- Default model: `gemini/gemini-2.5-flash`
4343
- Default output: `./output`

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "notewise"
3-
version = "1.4.2"
3+
version = "1.4.3"
44
description = "A terminal-native CLI that turns YouTube videos and playlists into hierarchical Markdown study notes, quizzes, transcripts, and multi-format exports (MD · HTML · PDF · DOCX) — through the LLM provider you already pay for."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/notewise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""NoteWise package."""
22

3-
__version__ = "1.4.2"
3+
__version__ = "1.4.3"

tests/unit/cli/test_updater.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def read(self) -> bytes:
3131
def test_check_for_updates_reports_available_release(mocker) -> None:
3232
payload = b"""
3333
{
34-
"tag_name": "v1.4.3",
34+
"tag_name": "v1.4.4",
3535
"html_url": "https://example.com/release"
3636
}
3737
"""
@@ -44,7 +44,7 @@ def fake_urlopen(*_args: object, **_kwargs: object) -> _FakeResponse:
4444
status = updater.check_for_updates()
4545

4646
assert status.available is True
47-
assert status.latest_version == "1.4.3"
47+
assert status.latest_version == "1.4.4"
4848
assert status.install_source == "Python Package"
4949
assert status.update_commands
5050
assert "notewise" in status.update_commands[0]
@@ -100,8 +100,8 @@ def test_update_command_prints_detected_source_and_matching_command(mocker) -> N
100100
cli_app,
101101
"check_for_updates",
102102
return_value=updater.UpdateStatus(
103-
current_version="1.4.2",
104-
latest_version="1.4.2",
103+
current_version="1.4.3",
104+
latest_version="1.4.3",
105105
available=True,
106106
install_source="Standalone Binary",
107107
release_url="https://example.com/release",

uv.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.

website/src/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const NOTEWISE_VERSION = "1.4.2";
1+
export const NOTEWISE_VERSION = "1.4.3";

0 commit comments

Comments
 (0)