Patch changelog

This commit is contained in:
Alexander Nozik 2021-02-21 16:17:57 +03:00
parent dd5ef4810f
commit 22dedb06cb
3 changed files with 14 additions and 5 deletions

View File

@ -2,6 +2,19 @@
## [Unreleased] ## [Unreleased]
### Added ### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [0.2.0]
### Added
- `fun` annotation for SAM interfaces in library - `fun` annotation for SAM interfaces in library
- Explicit `public` visibility for all public APIs - Explicit `public` visibility for all public APIs
- Better trigonometric and hyperbolic functions for `AutoDiffField` (https://github.com/mipt-npm/kmath/pull/140) - Better trigonometric and hyperbolic functions for `AutoDiffField` (https://github.com/mipt-npm/kmath/pull/140)

View File

@ -1,10 +1,7 @@
plugins { plugins {
id("ru.mipt.npm.gradle.project") id("ru.mipt.npm.gradle.project")
} }
internal val kmathVersion: String by extra("0.2.0")
allprojects { allprojects {
repositories { repositories {
jcenter() jcenter()
@ -21,7 +18,7 @@ allprojects {
} }
group = "space.kscience" group = "space.kscience"
version = kmathVersion version = "0.2.0"
} }
subprojects { subprojects {

View File

@ -1,6 +1,5 @@
pluginManagement { pluginManagement {
repositories { repositories {
mavenLocal()
gradlePluginPortal() gradlePluginPortal()
jcenter() jcenter()
maven("https://repo.kotlin.link") maven("https://repo.kotlin.link")