Skip to content

Commit

Permalink
version bump:
Browse files Browse the repository at this point in the history
- All JSON output (nested, flattened, split) generates object streams (array of JSON objects)
- Added a serial/autoincrementing integer field type
- Added support to modify the primary key field name and generated value (uid vs auto increment)
- Added support for strftime date format when generating random dates
- Ensure errors are annotated with filenames and line numbers
- Support output to STDOUT for command pipelining
- --check flag does a more thorough syntax check
- Predefined date variables UNIX_EPOCH and NOW
- Added support for lambdas
- Added support for composable expressions in field declarations
- Added support for distributions (uniform, weight, normal, percent)
- Better documentation
- Builtin types now prefixed with `$`
  • Loading branch information
kyleolivo committed Sep 25, 2017
1 parent 132c24c commit c73d00a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

const (
VERSION = "0.4.4"
VERSION = "0.5.0"
USAGE = `
Usage: %s [-o DESTFILE] [-d DICTPATH] [--stdout] [-cfms] [--] INPUTFILE
%s -v
Expand Down

0 comments on commit c73d00a

Please sign in to comment.