patach CHANGELOG.md
This commit is contained in:
parent
5afe0523f1
commit
3e8421187f
12
CHANGELOG.md
12
CHANGELOG.md
@ -2,6 +2,18 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
## [0.4.0]
|
||||||
|
### Added
|
||||||
- LogManager plugin
|
- LogManager plugin
|
||||||
- dataforge-context API dependency on SLF4j
|
- dataforge-context API dependency on SLF4j
|
||||||
- Context `withEnv` and `fetch` methods to manipulate plugins without changing plugins after creation.
|
- Context `withEnv` and `fetch` methods to manipulate plugins without changing plugins after creation.
|
||||||
|
@ -15,6 +15,10 @@ readme {
|
|||||||
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
|
readmeTemplate = file("docs/templates/README-TEMPLATE.md")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
changelog{
|
||||||
|
version = project.version.toString()
|
||||||
|
}
|
||||||
|
|
||||||
ksciencePublish {
|
ksciencePublish {
|
||||||
github("dataforge-core")
|
github("dataforge-core")
|
||||||
space("https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven")
|
space("https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven")
|
||||||
|
@ -66,6 +66,7 @@ public class ContextBuilder internal constructor(
|
|||||||
val contextName = name ?: "@auto[${hashCode().toUInt().toString(16)}]".toName()
|
val contextName = name ?: "@auto[${hashCode().toUInt().toString(16)}]".toName()
|
||||||
return Context(contextName, parent, meta.seal()).apply {
|
return Context(contextName, parent, meta.seal()).apply {
|
||||||
factories.forEach { (factory, meta) ->
|
factories.forEach { (factory, meta) ->
|
||||||
|
@Suppress("DEPRECATION")
|
||||||
plugins.load(factory, meta)
|
plugins.load(factory, meta)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user