Skip to content

Commit

Permalink
Pre-release version 0.1.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
joserobjr committed May 26, 2017
1 parent a2065fa commit bcfb921
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.1.0-alpha] - 2017-05-26
### Implements
- Immutable API for:
- Map (linked)
Expand All @@ -18,4 +18,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- SortedSet
- NavigableSet

[Unreleased]: https://github.com/PlateStack/immutable-collections/compare/v0.0.0...HEAD
[Unreleased]: https://github.com/PlateStack/immutable-collections/compare/v0.1.0-alpha...HEAD
[0.1.0-alpha]: https://github.com/PlateStack/immutable-collections/compare/v0.0.0...v0.1.0-alpha
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<groupId>org.platestack</groupId>
<artifactId>immutable-collections</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0-alpha</version>
<packaging>jar</packaging>

<name>immutable-collections</name>
Expand Down
18 changes: 17 additions & 1 deletion src/test/kotlin/tests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,27 @@
* limitations under the License.
*/

/*
* Copyright (C) 2017 José Roberto de Araújo Júnior
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import io.kotlintest.matchers.shouldBe
import io.kotlintest.specs.ShouldSpec
import org.platestack.structure.immutable.*

class Maps: ShouldSpec() {
class KotlinTests: ShouldSpec() {
init {
"immutable maps should equates to normal maps" {
immutableMapOf<String, String>() shouldBe mapOf<String, String>()
Expand Down

0 comments on commit bcfb921

Please sign in to comment.