Prepare for release 0.4.2

This commit is contained in:
Christian Treffs 2018-06-07 11:51:26 -07:00
parent 66ddda606a
commit bc1c295e99
2 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ github_url: "https://github.com/fireblade-engine/ecs"
hide_documentation_coverage: false
min_acl: "public"
module: "FirebladeECS"
module_version: 0.4.0
module_version: 0.4.2
output: "docs"
readme: "README.md"
skip_undocumented: false

View File

@ -1,7 +1,7 @@
# Fireblade ECS (Entity-Component-System)
[![version 0.4.0](https://img.shields.io/badge/version-0.4.0-brightgreen.svg)](releases/tag/v0.4.0)
[![version 0.4.2](https://img.shields.io/badge/version-0.4.2-brightgreen.svg)](releases/tag/v0.4.2)
[![license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE)
[![swift version](https://img.shields.io/badge/swift-4-brightgreen.svg)](#)
[![swift version](https://img.shields.io/badge/swift-4.2-brightgreen.svg)](#)
[![platforms](https://img.shields.io/badge/platform-macOS%20|%20iOS%20|%20linux-brightgreen.svg)](#)
This is a **dependency free**, **lightweight**, **fast** and **easy to use** [Entity-Component-System](https://en.wikipedia.org/wiki/Entitycomponentsystem) implementation in Swift. It is developed and maintained as part of the [Fireblade Game Engine project](https://github.com/fireblade-engine).
@ -25,14 +25,14 @@ Fireblade ECS is available for all platforms that support [Swift 4](https://swif
Extend the following lines in your `Package.swift` file or use it to create a new project.
```swift
// swift-tools-version:4.0
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "YourPackageName",
dependencies: [
.package(url: "https://github.com/fireblade-engine/ecs.git", from: "0.4.0")
.package(url: "https://github.com/fireblade-engine/ecs.git", from: "0.4.2")
],
targets: [
.target(