cullit 2.7.0 → 2.8.1

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -9,7 +9,7 @@ The `cullit` package on npm is intentionally limited to the free local surface:
9
9
  - stdout and file publishing
10
10
  - config, status, and tag helpers
11
11
 
12
- Installing from npm does not grant paid access by itself. Licensed AI providers, Jira/Linear enrichment, premium publishers, dashboard workflows, and other paid surfaces are delivered through Cullit-hosted or private licensed distributions.
12
+ Installing from npm does not grant Pro access by itself. Licensed AI providers, Jira/Linear enrichment, premium publishers, dashboard workflows, and other Pro surfaces are delivered through Cullit-hosted or private licensed distributions.
13
13
 
14
14
  ## Install
15
15
 
@@ -46,9 +46,9 @@ cullit generate --from v1.8.0 --provider none --template customer-facing
46
46
  ## Licensing
47
47
 
48
48
  - Public npm package: free local/template workflow only
49
- - Paid tiers (Pro, Team, Enterprise): delivered through the private package `@cullit/licensed`
49
+ - Paid tiers (Pro and Enterprise): delivered through the private package `@cullit/licensed`
50
50
  - `CULLIT_API_KEY`: used by licensed hosted/private Cullit surfaces
51
- - Need Pro or Team access: https://cullit.io/pricing
51
+ - Need Pro access? See https://cullit.io/pricing
52
52
 
53
53
  ## Commands
54
54
 
@@ -106,7 +106,7 @@ cullit --version
106
106
  - `--dry-run` print to stdout without publishing
107
107
  - `--template <name>` use a named template profile from `.cullit.yml`
108
108
 
109
- > **Note:** Sources other than `local`, and providers other than `none`, require a paid tier via `@cullit/licensed`.
109
+ > **Note:** Sources other than `local`, and providers other than `none`, require a Pro tier via `@cullit/licensed`.
110
110
  - `--audience <type>` tune output for `developer|end-user|executive`
111
111
  - `--tone <style>` tone controls for generated output
112
112
  - `--format <fmt>` output format
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cullit",
3
- "version": "2.7.0",
3
+ "version": "2.8.1",
4
4
  "type": "module",
5
5
  "description": "Public Cullit CLI for local, template-based release notes. Licensed AI and integrations are delivered separately.",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -34,8 +34,8 @@
34
34
  "node": ">=22"
35
35
  },
36
36
  "dependencies": {
37
- "@cullit/config": "2.7.0",
38
- "@cullit/core": "2.7.0"
37
+ "@cullit/core": "2.8.1",
38
+ "@cullit/config": "2.8.1"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "tsup src/index.ts --format esm --clean",