Packages

A framework for simulating Battlesnake-compatible game rules in Elixir.

Current section

Files

Jump to
snek CHANGELOG.md
Raw

CHANGELOG.md

# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog][keepachangelog], and this project
adheres to [Semantic Versioning][semver].
## [Unreleased]
## [0.2.0] - 2020-08-30
### Added
- A `Snek.Board.Snake.step/2` function for finding points relative to a snake's
last moved direction, but without moving the snake.
## [0.1.0] - 2020-08-30
### Added
- A `Snek.Board` module (and submodules) for representing board positions.
- A `Snek.Ruleset` behaviour module for implementing variations of game rules.
- A `Snek.Ruleset.Standard` module implementing the Battlesnake Standard rules.
- A `Snek.Ruleset.Solo` module implementing the Battlesnake Solo rules.
[Unreleased]: https://github.com/xtagon/snek/compare/v0.2.0...edge
[0.2.0]: https://github.com/xtagon/snek/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/xtagon/snek/releases/tag/v0.1.0
[keepachangelog]: https://keepachangelog.com/en/1.0.0/
[semver]: https://semver.org/spec/v2.0.0.html