Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
Updates to docs, Changelog, etc for 0.2.0
release.
  • Loading branch information
markmandel committed Jun 6, 2018
1 parent df50707 commit 73697a1
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 9 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [v0.2.0](https://github.com/GoogleCloudPlatform/agones/tree/v0.2.0) (2018-06-06)
[Full Changelog](https://github.com/GoogleCloudPlatform/agones/compare/v0.2.0.rc...v0.2.0)

**Closed issues:**

- Release v0.2.0.rc [\#231](https://github.com/GoogleCloudPlatform/agones/issues/231)

**Merged pull requests:**

- Adding my streaming development to contributing [\#239](https://github.com/GoogleCloudPlatform/agones/pull/239) ([markmandel](https://github.com/markmandel))
- Adding a README.md file for the simple-udp to help developer to get start [\#234](https://github.com/GoogleCloudPlatform/agones/pull/234) ([g-ericso](https://github.com/g-ericso))
- Revert install configuration back to 0.2.0 [\#233](https://github.com/GoogleCloudPlatform/agones/pull/233) ([markmandel](https://github.com/markmandel))

## [v0.2.0.rc](https://github.com/GoogleCloudPlatform/agones/tree/v0.2.0.rc) (2018-05-30)
[Full Changelog](https://github.com/GoogleCloudPlatform/agones/compare/v0.1...v0.2.0.rc)

Expand Down Expand Up @@ -50,6 +63,8 @@

**Merged pull requests:**

- Updates to release process [\#235](https://github.com/GoogleCloudPlatform/agones/pull/235) ([markmandel](https://github.com/markmandel))
- Release v0.2.0.rc [\#232](https://github.com/GoogleCloudPlatform/agones/pull/232) ([markmandel](https://github.com/markmandel))
- do-release release registry and upstream push [\#228](https://github.com/GoogleCloudPlatform/agones/pull/228) ([markmandel](https://github.com/markmandel))
- Archive C++ src on build and release [\#227](https://github.com/GoogleCloudPlatform/agones/pull/227) ([markmandel](https://github.com/markmandel))
- Update installing\_agones.md [\#225](https://github.com/GoogleCloudPlatform/agones/pull/225) ([g-ericso](https://github.com/g-ericso))
Expand Down
3 changes: 2 additions & 1 deletion build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -239,11 +239,12 @@ push-build-image:
docker push $(build_remote_tag)

# generate a changelog using github-changelog-generator
gen-changelog: RELEASE_VERSION ?= $(base_version)
gen-changelog:
@read -p 'Github Token: ' TOKEN && \
docker run -it --rm -v "$(agones_path)":/usr/local/src/your-app ferrarimarco/github-changelog-generator \
GoogleCloudPlatform/agones --bug-labels=kind/bug --enhancement-labels=kind/feature \
--future-release "v$(base_version).rc" \
--future-release "v$(RELEASE_VERSION)" \
--token=$$TOKEN

# Creates a release. Version defaults to the base_version
Expand Down
2 changes: 0 additions & 2 deletions docs/create_fleet.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
⚠️⚠️⚠️ **This is currently a release candidate feature** ⚠️⚠️⚠️

# Quickstart Create a Game Server Fleet

This guide covers how you can quickly get started using Agones to create a Fleet
Expand Down
2 changes: 0 additions & 2 deletions docs/fleet_spec.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
⚠️⚠️⚠️ **This is currently a release candidate feature** ⚠️⚠️⚠️

# Fleet Specification

A `Fleet` is a set of warm GameServers that are available to be allocated from.
Expand Down
2 changes: 1 addition & 1 deletion docs/governance/templates/release_issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and copy it into a release issue. Fill in relevent values, found inside {}
- [ ] Review closed issues have been applied to the current milestone.
- [ ] Ensure the next version milestone is created.
- [ ] Any issues in the current milestone that are not closed, move to next milestone.
- [ ] Run `make gen-changelog` to generate the CHANGELOG.md
- [ ] Run `make gen-changelog` to generate the CHANGELOG.md (if release candidate `make gen-changelog RELEASE_VERSION={version}.rc`)
- [ ] Ensure the [helm `tag` value][values] is correct (should be the {version} if a full release, {version}.rc if release candidate)
- [ ] Run `make gen-install`
- [ ] If RC release, update all ⚠️⚠️⚠️ warnings to: "**This is currently a release candidate feature**"
Expand Down
2 changes: 1 addition & 1 deletion install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ We can install Agones to the cluster using the
[install.yaml](https://github.com/GoogleCloudPlatform/agones/blob/release-0.1/install.yaml) file.
```bash
kubectl apply -f https://raw.githubusercontent.com/googlecloudplatform/agones/release-0.1/install.yaml
kubectl apply -f https://github.com/GoogleCloudPlatform/agones/raw/release-0.2.0/install/yaml/install.yaml
```
You can also find the install.yaml in the latest `agones-install` zip from the [releases](https://github.com/GoogleCloudPlatform/agones/releases) archive.
Expand Down
2 changes: 0 additions & 2 deletions install/helm/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
⚠️⚠️⚠️ **This is currently a release candidate feature** ⚠️⚠️⚠️

# Install Agones using Helm

This chart install the Agones application and defines deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
Expand Down

0 comments on commit 73697a1

Please sign in to comment.