omnish 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to this project are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.1.3] - 2026-05-04
9
+
10
+ ### Added
11
+
12
+ - **Cowork persistence via SQLite**: cowork state now stores in a local SQLite database using `better-sqlite3`, improving durability across restarts.
13
+ - **Maintainer release guide**: added [docs/maintainers/release-and-publish.md](docs/maintainers/release-and-publish.md) to document npm publishing and GitHub release flow.
14
+
15
+ ### Changed
16
+
17
+ - **Cowork scheduler/store wiring**: scheduler and store logic now use the database-backed flow for more reliable state handling.
18
+
19
+ [1.1.3]: https://github.com/eligapris/omnish/compare/v1.1.2...v1.1.3
20
+
8
21
  ## [1.1.1] - 2026-05-03
9
22
 
10
23
  ### Changed
package/README.md CHANGED
@@ -229,6 +229,7 @@ node dist/index.js run
229
229
 
230
230
  ## Repository presentation (maintainers)
231
231
 
232
+ - **Releases:** [Release and publish (GitHub + npm)](docs/maintainers/release-and-publish.md) — CI workflow, tagging, `NPM_TOKEN`.
232
233
  - **README and docs images** use **`https://omnish.dev/media/<filename>`** as the single source of truth so they render on **npm**, GitHub, and local clones without bundling `public/` in the package.
233
234
  - **Social preview:** Repository → **Settings** → **General** → **Social preview** — upload an image; canonical asset: [`https://omnish.dev/media/omnish_github_banner.png`](https://omnish.dev/media/omnish_github_banner.png).
234
235