patach CHANGELOG.md

This commit is contained in:
Alexander Nozik 2021-04-27 11:17:27 +03:00
parent 5afe0523f1
commit 3e8421187f
3 changed files with 17 additions and 0 deletions

View File

@ -2,6 +2,18 @@
## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [0.4.0]
### Added
- LogManager plugin
- dataforge-context API dependency on SLF4j
- Context `withEnv` and `fetch` methods to manipulate plugins without changing plugins after creation.

View File

@ -15,6 +15,10 @@ readme {
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
}
changelog{
version = project.version.toString()
}
ksciencePublish {
github("dataforge-core")
space("https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven")

View File

@ -66,6 +66,7 @@ public class ContextBuilder internal constructor(
val contextName = name ?: "@auto[${hashCode().toUInt().toString(16)}]".toName()
return Context(contextName, parent, meta.seal()).apply {
factories.forEach { (factory, meta) ->
@Suppress("DEPRECATION")
plugins.load(factory, meta)
}
}