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]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [0.2.0]
### Added
- `fun` annotation for SAM interfaces in library
- Explicit `public` visibility for all public APIs
- Better trigonometric and hyperbolic functions for `AutoDiffField` (https://github.com/mipt-npm/kmath/pull/140)

View File

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

View File

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