Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
add changelog, bump to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvaughn committed Feb 15, 2018
1 parent b0a9451 commit 3cb178b
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0] - 2018-02-15
### Added
- clean up local log files when job is complete
- added CLI framework for easier handling of options
- added tests from 0 to 31% test coverage
- use LogDNA archive files in Google Cloud Storage instead of AWS S3 for bandwidth cost savings

### Changed
- `Bucket` in GCP config is now `UploadBucket`

### Removed
- AWS S3 config and download of log archive from AWS. Check latest README for up to date config documentation

## 0.1.0 - 2017-11-12
### Added
- Working code to take LogDNA archives in AWS S3, process them, and ingest them BigQuery.

[Unreleased]: https://github.com/lifechurch/dnaquery/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/lifechurch/dnaquery/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/lifechurch/dnaquery/compare/9bece45e6dfdb371b54a765a672429f9958bc2ca...v0.1.0
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ dep ensure -update
go test -v ./...
```

## Changelog

[CHANGELOG.md](CHANGELOG.md)

## Contributing

Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests.
Expand Down
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import (
"google.golang.org/api/option"
)

var version = "0.2.0-dev"

type DNAQuery struct {
*Configuration
containerNames map[string]struct{}
Expand Down Expand Up @@ -345,6 +347,6 @@ func main() {
},
}
app.Action = run
app.Version = "0.2.0"
app.Version = version
app.Run(os.Args)
}

0 comments on commit 3cb178b

Please sign in to comment.