Skip to content

Commit

Permalink
#12 Bump to the next version
Browse files Browse the repository at this point in the history
  • Loading branch information
zshamrock committed Dec 31, 2019
1 parent 8200f84 commit 73d2f53
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -21,4 +21,6 @@ vendor/
*.xdelta*

# Releases
releases/
releases/

queries.txt
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -20,7 +20,7 @@ USAGE:
[--output/-o <output file name>]
VERSION:
1.1.2
1.1.3
AUTHOR:
(c) Aliaksandr Kazlou
Expand Down
2 changes: 1 addition & 1 deletion build-snap-and-push.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
snapcraft
snapcraft push --release=stable dynocsv_1.1.2_amd64.snap
snapcraft push --release=stable dynocsv_1.1.3_amd64.snap

# sudo snap install --dangerous dynocsv_1.1.0_amd64.snap

Expand Down
8 changes: 8 additions & 0 deletions changelog.md
@@ -1,3 +1,11 @@
# [1.1.3] - 2019-12-31
## Added
- Set the columns in the resulting CSV file even if not provided by the user [#12](/../../issues/12)

## Changed

## Removed

# [1.1.2] - 2019-12-29
## Added
- Fix error on query sort not working [#19](/../../issues/19)
Expand Down
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -42,7 +42,7 @@ var sortFlags = []string{

const (
appName = "dynocsv"
version = "1.1.2"
version = "1.1.3"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
@@ -1,5 +1,5 @@
name: dynocsv # you probably want to 'snapcraft register <name>'
version: '1.1.2' # just for humans, typically '1.2+git' or '1.3.2'
version: '1.1.3' # just for humans, typically '1.2+git' or '1.3.2'
summary: Exports DynamoDB table into CSV # 79 char long summary
description: |
Exports DynamoDB table into CSV, additionally can filter out specific columns and limit the number of items to be exported,
Expand Down

0 comments on commit 73d2f53

Please sign in to comment.