Skip to content

Commit 3c784c5

Browse files
author
Adrián García
committed
Prepare for version 1.1.0. Add CHANGELOG
1 parent 47b60cc commit 3c784c5

File tree

2 files changed

+77
-1
lines changed

2 files changed

+77
-1
lines changed

CHANGELOG.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
- No unreleased features, yet!
9+
10+
## [1.1.0] - 2020-01-28
11+
### Added
12+
- Add `TypedTask` class in order to store simple metadata inside a `Task`.
13+
14+
## [1.0.9] - 2020-01-09
15+
### Added
16+
- Add support for custom backpressure strategies when calling `Store.flowable`.
17+
The default strategy is `BackpressureStrategy.BUFFER`.
18+
19+
### Fixed
20+
- Fix `Store.flowable` not unsubscribing correctly when disposed.
21+
22+
## [1.0.8] - 2019-12-19
23+
### Fixed
24+
- Fix logger not rendering correctly in logcat. Thanks @danielceinos!
25+
26+
### Fixed
27+
- Fix typos in recent README changes.
28+
- Update outdated unreleased diff link.
29+
30+
## [1.0.7] - 2019-12-04
31+
### Changed
32+
- Make `Resource.empty` an object instead of a class.
33+
34+
## [1.0.6] - 2019-11-20
35+
### Fixed
36+
- Fix `Resource` and `Task` `toString` functions.
37+
38+
## [1.0.5] - 2019-11-20
39+
### Fixed
40+
- Fix `Task` `toString` function.
41+
42+
## [1.0.4] - 2019-11-14
43+
### Added
44+
- Add `equals` and `hashCode` to `Resource` class to ease comparisons.
45+
46+
### Removed
47+
- Remove empty sections from CHANGELOG, they occupy too much space and
48+
create too much noise in the file. People will have to assume that the
49+
missing sections were intentionally left out because they contained no
50+
notable changes.
51+
52+
## [1.0.3] - 2019-11-04
53+
### Fixed
54+
- Fix `getOrNull` not returning a value if said value is set-up in
55+
`Resource.loading`
56+
57+
## [1.0.2] - 2019-10-23
58+
### Added
59+
- `mini-testing` package adds testing utilities for the library.
60+
61+
## [1.0.1] - 2019-10-07
62+
### Added
63+
- Initial architecture release.
64+
65+
[Unreleased]: https://github.com/bq/mini-kotlin/compare/1.1.0...HEAD
66+
[1.1.0]: https://github.com/bq/mini-kotlin/compare/1.0.9...1.1.0
67+
[1.0.9]: https://github.com/bq/mini-kotlin/compare/1.0.8...1.0.9
68+
[1.0.8]: https://github.com/bq/mini-kotlin/compare/1.0.7...1.0.8
69+
[1.0.7]: https://github.com/bq/mini-kotlin/compare/1.0.6...1.0.7
70+
[1.0.6]: https://github.com/bq/mini-kotlin/compare/1.0.5...1.0.6
71+
[1.0.5]: https://github.com/bq/mini-kotlin/compare/1.0.4...1.0.5
72+
[1.0.4]: https://github.com/bq/mini-kotlin/compare/1.0.3...1.0.4
73+
[1.0.3]: https://github.com/bq/mini-kotlin/compare/1.0.2...1.0.3
74+
[1.0.2]: https://github.com/bq/mini-kotlin/compare/1.0.1...1.0.2
75+
[1.0.1]: https://github.com/bq/mini-kotlin/compare/1.0.0...1.0.1
76+
[1.0.0]: https://github.com/bq/mini-kotlin/releases/tag/1.0.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Add the following dependencies to your app's `build.gradle`:
184184

185185
```groovy
186186
dependencies {
187-
def mini_version = "1.0.9"
187+
def mini_version = "1.1.0"
188188
// Minimum working dependencies
189189
implementation "com.github.bq.mini-kotlin:mini-android:$mini_version"
190190
kapt "com.github.bq.mini-kotlin:mini-processor:$mini_version"

0 commit comments

Comments
 (0)