rudel 0.4.0 → 0.6.0

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +11 -1
  3. package/package.json +2 -2
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 ObsessionDB
3
+ Copyright (c) 2026 Opaline Labs, Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -8,5 +8,15 @@ and exit codes continue through the Opaline CLI. The alias prints
8
8
  canonical CLI without changing stdout. New installations should use:
9
9
 
10
10
  ```bash
11
- npm install --global @opalinehq/cli
11
+ npm install --global opaline
12
12
  ```
13
+
14
+ Existing users can keep installing and updating `rudel`. It is released with
15
+ `opaline` and `@opalinehq/cli` and depends on the exact matching CLI version.
16
+ Both `rudel` and `opaline` keep using the same `~/.rudel` state directory.
17
+ Running `rudel upload` installs hooks using the `rudel` executable, so no
18
+ separate global `opaline` installation is required.
19
+
20
+ ## License
21
+
22
+ Copyright (c) 2026 Opaline Labs, Inc. Licensed under [MIT](LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rudel",
3
- "version": "0.4.0",
3
+ "version": "0.6.0",
4
4
  "type": "module",
5
5
  "description": "Compatibility alias for the Opaline CLI",
6
6
  "license": "MIT",
@@ -31,6 +31,6 @@
31
31
  "README.md"
32
32
  ],
33
33
  "dependencies": {
34
- "@opalinehq/cli": "0.4.0"
34
+ "@opalinehq/cli": "0.6.0"
35
35
  }
36
36
  }