@dotenvx/dotenvx 1.57.2 → 1.57.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
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.57.2...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.57.3...main)
6
+
7
+ ## [1.57.3](https://github.com/dotenvx/dotenvx/compare/v1.57.2...v1.57.3) (2026-03-26)
8
+
9
+ ### Changes
10
+
11
+ * Simplify installed success message ([#766](https://github.com/dotenvx/dotenvx/pull/766))
6
12
 
7
13
  ## [1.57.2](https://github.com/dotenvx/dotenvx/compare/v1.57.1...v1.57.2) (2026-03-22)
8
14
 
package/README.md CHANGED
@@ -2605,7 +2605,7 @@ This is known as *Decryption at Access* and is written about in [the whitepaper]
2605
2605
 
2606
2606
   
2607
2607
 
2608
- ## Ops 🛡️
2608
+ ## Ops
2609
2609
 
2610
2610
  [![dotenvx-ops](https://dotenvx.com/dotenvx-ops-banner.png?v=3)](https://dotenvx.com/ops)
2611
2611
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.57.2",
2
+ "version": "1.57.3",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a secure dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -209,7 +209,7 @@ program.command('help [command]')
209
209
  // dotenvx pro
210
210
  program.addHelpText('after', ' ')
211
211
  program.addHelpText('after', 'Advanced: ')
212
- program.addHelpText('after', ' ops 🛡️ ops')
212
+ program.addHelpText('after', ' ops Ops [www.dotenvx.com/ops]')
213
213
  program.addHelpText('after', ' ext 🔌 extensions')
214
214
 
215
215
  // dotenvx ext
@@ -20,7 +20,7 @@ class Ops {
20
20
  }
21
21
 
22
22
  if (this.opsLib) {
23
- // logger.successv(`🛡️ ops: ${this.opsLib.status()}`)
23
+ // logger.successv(`⛨ ops: ${this.opsLib.status()}`)
24
24
  }
25
25
  }
26
26