confluence-cli 1.4.0 → 1.4.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.4.1](https://github.com/pchuri/confluence-cli/compare/v1.4.0...v1.4.1) (2025-06-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * correct version display in CLI ([#6](https://github.com/pchuri/confluence-cli/issues/6)) ([36f8419](https://github.com/pchuri/confluence-cli/commit/36f8419b309ae1ff99fa94c12ace9a527ee3f162))
7
+
1
8
  # [1.4.0](https://github.com/pchuri/confluence-cli/compare/v1.3.2...v1.4.0) (2025-06-30)
2
9
 
3
10
 
package/bin/confluence.js CHANGED
@@ -5,11 +5,12 @@ const chalk = require('chalk');
5
5
  const ConfluenceClient = require('../lib/confluence-client');
6
6
  const { getConfig, initConfig } = require('../lib/config');
7
7
  const Analytics = require('../lib/analytics');
8
+ const pkg = require('../package.json');
8
9
 
9
10
  program
10
11
  .name('confluence')
11
12
  .description('CLI tool for Atlassian Confluence')
12
- .version('1.0.0');
13
+ .version(pkg.version);
13
14
 
14
15
  // Init command
15
16
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "confluence-cli",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "A command-line interface for Atlassian Confluence with page creation and editing capabilities",
5
5
  "main": "index.js",
6
6
  "bin": {