neonctl 1.27.0-beta.1 → 1.27.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.
@@ -91,19 +91,19 @@ export const builder = (argv) => argv
91
91
  .example([
92
92
  [
93
93
  '$0 branches restore main br-source-branch-123456',
94
- 'Restore main to the head of the branch with id br-source-branch-123456',
94
+ 'Restores main to the head of the branch with id br-source-branch-123456',
95
95
  ],
96
96
  [
97
97
  '$0 branches restore main source@2021-01-01T00:00:00Z',
98
- 'Restore main to the timestamp 2021-01-01T00:00:00Z of the source branch',
98
+ 'Restores main to the timestamp 2021-01-01T00:00:00Z of the source branch',
99
99
  ],
100
100
  [
101
101
  '$0 branches restore my-branch ^self@0/123456',
102
- 'Restore my-branch to the LSN 0/123456 of the branch itself',
102
+ 'Restores my-branch to the LSN 0/123456 from its own history',
103
103
  ],
104
104
  [
105
105
  '$0 branches restore my-branch ^parent',
106
- 'Restore my-branch to the head of the parent branch',
106
+ 'Restore my-branch to the head of its parent branch',
107
107
  ],
108
108
  ]), async (args) => await restore(args))
109
109
  .command('rename <id|name> <new-name>', 'Rename a branch', (yargs) => yargs, async (args) => await rename(args))
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "git@github.com:neondatabase/neonctl.git"
6
6
  },
7
7
  "type": "module",
8
- "version": "1.27.0-beta.1",
8
+ "version": "1.27.0",
9
9
  "description": "CLI tool for NeonDB Cloud management",
10
10
  "main": "index.js",
11
11
  "author": "NeonDB",