Skip to content

Commit be6e326

Browse files
committed
Version 0.5.1
1 parent f114150 commit be6e326

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format
33

44
## [Unreleased]
55

6+
## Overmind [0.5.1] - 2019.1.2
7+
8+
This patch changes the architecture of Overmind to be much more CPU efficient by introducing a cache-friendly `refresh()` phase to the main loop. See [this blog post](https://bencbartlett.wordpress.com/2019/01/02/screeps-6-verifiably-refreshed/) for more details. Additionally, the `Visualizer` system has been rewritten, and prelimiary support for assimilation and swarms has been added.
9+
610
### Added
711
- Huge persistence update: much of the Overmind architecture now persists on global between ticks! This saves a ton of CPU that was previously used toward garbage collection.
812
- The global `Overmind` object is now rebuilt every 20 ticks; in the meantime, `refresh()` is called
@@ -358,7 +362,8 @@ This release was initially deployed on 2018.3.2 but was re-versioned on 2018.3.1
358362
- Initial pre-release of Overmind after 190 commits and about 80,000 additions.
359363

360364

361-
[Unreleased]: https://github.com/bencbartlett/Overmind/compare/v0.5.0...HEAD
365+
[Unreleased]: https://github.com/bencbartlett/Overmind/compare/v0.5.1...HEAD
366+
[0.5.1]: https://github.com/bencbartlett/Overmind/compare/v0.5.0...v0.5.1
362367
[0.5.0]: https://github.com/bencbartlett/Overmind/compare/v0.4.1...v0.5.0
363368
[0.4.1]: https://github.com/bencbartlett/Overmind/compare/v0.4.0...v0.4.1
364369
[0.4.0]: https://github.com/bencbartlett/Overmind/compare/v0.3.1...v0.4.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Overmind Screeps AI [![Build Status](https://travis-ci.org/bencbartlett/Overmind.svg?branch=master)](https://travis-ci.org/bencbartlett/Overmind) </br> [<img src="/assets/img/buttons/download.png" height=22>](https://github.com/bencbartlett/Overmind/releases) [<img src="/assets/img/buttons/patchNotes.png" height=22>](https://github.com/bencbartlett/Overmind/blob/master/CHANGELOG.md) [<img src="/assets/img/buttons/documentation.png" height=22>](https://github.com/bencbartlett/Overmind/wiki) [<img src="/assets/img/buttons/slack.png" height=22>](https://screeps.slack.com/messages/overmind) [<img src="/assets/img/buttons/issue.png" height=22>](https://github.com/bencbartlett/Overmind/issues/new) [<img src="/assets/img/buttons/featureRequest.png" height=22>](https://github.com/bencbartlett/Overmind/issues/new?template=feature_request.md)
44

5-
### Current release: [Overmind v0.5.x - Evolution](https://github.com/bencbartlett/Overmind/releases)
5+
### Current release: [Overmind v0.5.1 - Evolution](https://github.com/bencbartlett/Overmind/releases)
66

77
- See the [changelog](https://github.com/bencbartlett/Overmind/blob/master/CHANGELOG.md) for patch notes
88
- Documentation is available in the [wiki](https://github.com/bencbartlett/Overmind/wiki)

src/console/globals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
declare const __VERSION__: string;
2-
global.__VERSION__ = '0.5.0';
2+
global.__VERSION__ = '0.5.1';
33

44
declare function deref(ref: string): RoomObject | null;
55

0 commit comments

Comments
 (0)