Skip to content

Commit

Permalink
v2.0.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Adler committed Feb 22, 2021
1 parent 6121142 commit 095c1a8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [2.0.0-alpha.2] - 2021-02-22

- `kivik validate` positional arguments are saved

## [2.0.0-alpha.1] - 2021-02-19

- `kivik inspect` actually deploys Couch config
Expand Down Expand Up @@ -74,6 +78,7 @@
- Multiple design document support
- View (map/reduce) and update function support within design documents

[2.0.0-alpha.2]: https://github.com/crkn-rcdr/kivik/releases/tag/v2.0.0-alpha.2
[2.0.0-alpha.1]: https://github.com/crkn-rcdr/kivik/releases/tag/v2.0.0-alpha.1
[2.0.0-alpha.0]: https://github.com/crkn-rcdr/kivik/releases/tag/v2.0.0-alpha.0
[1.3.0]: https://github.com/crkn-rcdr/kivik/releases/tag/v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kivik",
"version": "2.0.0-alpha.1",
"version": "2.0.0-alpha.2",
"description": "An opinionated library and command-line utility for configuration CouchDB endpoints, databases, and design documents",
"keywords": [
"couchdb"
Expand Down
10 changes: 10 additions & 0 deletions src/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ const options = {
describe:
"Key to load a config object for this invocation of kivik in your kivikrc file.",
},
database: {
type: "string",
hidden: true,
describe: "The database whose schema will be validated against a document",
},
deployFixtures: {
type: "boolean",
default: false,
Expand All @@ -21,6 +26,11 @@ const options = {
hidden: true,
describe: "Path to the root directory containing Kivik configuration.",
},
document: {
type: "string",
hidden: true,
describe: "The document to validate against a database's schema",
},
exclude: {
type: "string",
array: true,
Expand Down

0 comments on commit 095c1a8

Please sign in to comment.