Skip to content

Commit

Permalink
Merge pull request #1 from mtslzr/release/v1.0.0
Browse files Browse the repository at this point in the history
Release v1.0.0
  • Loading branch information
mtslzr authored Jun 22, 2019
2 parents 7e41c38 + 6e5993c commit c33da6c
Show file tree
Hide file tree
Showing 44 changed files with 3,813 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: 2

jobs:
build:
docker:
- image: golang:1.12
steps:
- checkout
- run: make
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@
*.so
*.dylib

# Vendor
vendor

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# VSCode
.vscode
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](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Pagination for resource lists

## [1.0.0] - 2019-06-22
### Added
- Endpoint Categories
- Berries (berries, firmness, flavors)
- Contests (types, effects, etc.)
- Encounters (methods, conditions, etc.)
- Evolution (chains, triggers)
- Games (generations, versions, etc.)
- Locations (areas, regions, etc.)
- Machines
- Moves (moves, attributes, etc.)
- Pokemon (abilities, egg groups, etc.)
- Utility (languages)
- Resource endpoint for resource lists
- Unit tests for all endpoints

[Unreleased]: https://github.com/mtslzr/pokeapi-go/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/mtslzr/pokeapi-go/releases/tag/v1.0.0
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
all: deps test

deps: tidy vend

test:
go test -v ./tests/...

tidy:
go mod tidy -v

vend:
go mod vendor -v
Loading

0 comments on commit c33da6c

Please sign in to comment.