Skip to content

Commit

Permalink
Updating CHANGES and VERSION.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckreibich committed Jun 3, 2022
1 parent 146a3e0 commit eecabac
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.13.0 | 2022-06-01 01:18:25 -0700

* Release 2.13.0.

2.12.0-22 | 2022-06-01 01:18:08 -0700

* Add argcomplete support (Christian Kreibich, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.12.0-22
2.13.0
25 changes: 17 additions & 8 deletions doc/man/zkg.1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.TH "ZKG" "1" "Jun 01, 2022" "2.12.0-22" "Zeek Package Manager"
.TH "ZKG" "1" "Jun 03, 2022" "2.13.0" "Zeek Package Manager"
.SH NAME
zkg \- Zeek Package Manager
.sp
Expand All @@ -38,7 +38,9 @@ A command\-line package manager for Zeek.
.sp
.nf
.ft C
usage: zkg [\-h] [\-\-version] [\-\-configfile FILE | \-\-user] [\-\-verbose] [\-\-extra\-source NAME=URL] {test,install,bundle,unbundle,remove,uninstall,purge,refresh,upgrade,load,unload,pin,unpin,list,search,info,config,autoconfig,env,create,template} ...
usage: zkg [\-h] [\-\-version] [\-\-configfile FILE | \-\-user] [\-\-verbose] [\-\-extra\-source NAME=URL]
{test,install,bundle,unbundle,remove,uninstall,purge,refresh,upgrade,load,unload,pin,unpin,list,search,info,config,autoconfig,env,create,template}
...
.ft P
.fi
.UNINDENT
Expand Down Expand Up @@ -116,7 +118,9 @@ Installs packages from a configured package source or directly from a git URL.
.sp
.nf
.ft C
usage: zkg install [\-h] [\-\-skiptests] [\-\-nodeps] [\-\-nosuggestions] [\-\-version VERSION] [\-\-force] [\-\-user\-var NAME=VAL] package [package ...]
usage: zkg install [\-h] [\-\-skiptests] [\-\-nodeps] [\-\-nosuggestions] [\-\-version VERSION] [\-\-force]
[\-\-user\-var NAME=VAL]
package [package ...]
.ft P
.fi
.UNINDENT
Expand Down Expand Up @@ -224,7 +228,8 @@ This command creates a bundle file containing a collection of Zeek packages. If
.sp
.nf
.ft C
usage: zkg bundle [\-h] [\-\-force] [\-\-nodeps] [\-\-nosuggestions] [\-\-manifest MANIFEST [MANIFEST ...] \-\-] filename.bundle
usage: zkg bundle [\-h] [\-\-force] [\-\-nodeps] [\-\-nosuggestions] [\-\-manifest MANIFEST [MANIFEST ...] \-\-]
filename.bundle
.ft P
.fi
.UNINDENT
Expand Down Expand Up @@ -299,7 +304,8 @@ Retrieve latest package metadata from sources and checks whether any installed p
.sp
.nf
.ft C
usage: zkg refresh [\-h] [\-\-aggregate] [\-\-fail\-on\-aggregate\-problems] [\-\-push] [\-\-sources SOURCES [SOURCES ...]]
usage: zkg refresh [\-h] [\-\-aggregate] [\-\-fail\-on\-aggregate\-problems] [\-\-push]
[\-\-sources SOURCES [SOURCES ...]]
.ft P
.fi
.UNINDENT
Expand Down Expand Up @@ -331,7 +337,8 @@ Uprades the specified package(s) to latest available version. If no specific pa
.sp
.nf
.ft C
usage: zkg upgrade [\-h] [\-\-skiptests] [\-\-nodeps] [\-\-nosuggestions] [\-\-force] [\-\-user\-var NAME=VAL] [package ...]
usage: zkg upgrade [\-h] [\-\-skiptests] [\-\-nodeps] [\-\-nosuggestions] [\-\-force] [\-\-user\-var NAME=VAL]
[package ...]
.ft P
.fi
.UNINDENT
Expand Down Expand Up @@ -537,7 +544,8 @@ Shows detailed information/metadata for given packages. If the package is curren
.sp
.nf
.ft C
usage: zkg info [\-h] [\-\-version VERSION] [\-\-nolocal] [\-\-json] [\-\-jsonpretty SPACES] [\-\-allvers] package [package ...]
usage: zkg info [\-h] [\-\-version VERSION] [\-\-nolocal] [\-\-json] [\-\-jsonpretty SPACES] [\-\-allvers]
package [package ...]
.ft P
.fi
.UNINDENT
Expand Down Expand Up @@ -643,7 +651,8 @@ This command creates a new Zeek package in the directory provided via \-\-packag
.sp
.nf
.ft C
usage: zkg create [\-h] \-\-packagedir DIR [\-\-version VERSION] [\-\-features FEATURE [FEATURE ...]] [\-\-template URL] [\-\-force] [\-\-user\-var NAME=VAL]
usage: zkg create [\-h] \-\-packagedir DIR [\-\-version VERSION] [\-\-features FEATURE [FEATURE ...]]
[\-\-template URL] [\-\-force] [\-\-user\-var NAME=VAL]
.ft P
.fi
.UNINDENT
Expand Down
2 changes: 1 addition & 1 deletion zeekpkg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import logging

__version__ = "2.12.0-22"
__version__ = "2.13.0"
__all__ = ['manager', 'package', 'source', 'template', 'uservar']

LOG = logging.getLogger(__name__)
Expand Down

0 comments on commit eecabac

Please sign in to comment.