Skip to content

Commit 4dd9b81

Browse files
committed
Update CHANGELOG
1 parent 105aef7 commit 4dd9b81

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
# Change Log
22

3-
## Unreleased (2021-07-19)
3+
## [0.10.0.183](https://github.com/Kotlin/kotlin-jupyter/tree/0.10.0.183) (2021-08-06)
4+
[View commits](https://github.com/Kotlin/kotlin-jupyter/compare/0.10.0.40...0.10.0.183)
45

56
**Closed issues:**
67

8+
- Refactor build logic [\#306](https://github.com/Kotlin/kotlin-jupyter/issues/306)
9+
- Update Kravis and Krangl library descriptors [\#309](https://github.com/Kotlin/kotlin-jupyter/issues/309)
10+
- Create a separate repository for descriptors [\#254](https://github.com/Kotlin/kotlin-jupyter/issues/254)
11+
- Support multiplatform projects in jupyter.api plugin [\#148](https://github.com/Kotlin/kotlin-jupyter/issues/148)
12+
- Update changelog [\#253](https://github.com/Kotlin/kotlin-jupyter/issues/253)
713
- Update landing page screenshot [\#307](https://github.com/Kotlin/kotlin-jupyter/issues/307)
814
- Display list of data classes as table [\#294](https://github.com/Kotlin/kotlin-jupyter/issues/294)
915
- MIME does not allow binary data [\#293](https://github.com/Kotlin/kotlin-jupyter/issues/293)
1016
- Images are not displayed [\#292](https://github.com/Kotlin/kotlin-jupyter/issues/292)
11-
- Question about the proper way to add custom classes and files [\#280](https://github.com/Kotlin/kotlin-jupyter/issues/280)
1217
- Add Skija as a supported library [\#272](https://github.com/Kotlin/kotlin-jupyter/issues/272)
1318

1419
**Fixed bugs:**
1520

21+
- Sources are not published for API Gradle plugin [\#310](https://github.com/Kotlin/kotlin-jupyter/issues/310)
1622
- Fix Gradle plugin for Multiplatform project [\#255](https://github.com/Kotlin/kotlin-jupyter/issues/255)
1723
- Cannot find kernel [\#268](https://github.com/Kotlin/kotlin-jupyter/issues/268)
1824
- Completion of functions parameters works incorrectly [\#256](https://github.com/Kotlin/kotlin-jupyter/issues/256)
@@ -21,6 +27,11 @@
2127

2228
**Merged pull requests:**
2329

30+
- Refactor build [\#315](https://github.com/Kotlin/kotlin-jupyter/pull/315) ([@ileasile](https://github.com/ileasile))
31+
- Add support for IPC transport protocol [\#313](https://github.com/Kotlin/kotlin-jupyter/pull/313) ([@strangepleasures](https://github.com/strangepleasures))
32+
- Add separate repository for library descriptors [\#303](https://github.com/Kotlin/kotlin-jupyter/pull/303) ([@ileasile](https://github.com/ileasile))
33+
- Fix completion starting logic, avoid preventDefault [\#308](https://github.com/Kotlin/kotlin-jupyter/pull/308) ([@ileasile](https://github.com/ileasile))
34+
- Update Changelog and fix Gradle plugin sources publication [\#311](https://github.com/Kotlin/kotlin-jupyter/pull/311) ([@ileasile](https://github.com/ileasile))
2435
- Variables view feature [\#297](https://github.com/Kotlin/kotlin-jupyter/pull/297) ([@nikolay-egorov](https://github.com/nikolay-egorov))
2536
- Conditional Gradle plugin tasks initialization [\#298](https://github.com/Kotlin/kotlin-jupyter/pull/298) ([@ileasile](https://github.com/ileasile))
2637
- Create specialized kernels w/ JDK, JVM args, and environment variables [\#287](https://github.com/Kotlin/kotlin-jupyter/pull/287) ([@rnett](https://github.com/rnett))
@@ -29,6 +40,12 @@
2940

3041
**New features:**
3142

43+
- Allow for multiple cell outputs [\#20](https://github.com/Kotlin/kotlin-jupyter/issues/20)
44+
- Dynamic update of cell output [\#318](https://github.com/Kotlin/kotlin-jupyter/issues/318)
45+
- Integration testing Jupyter notebook support [\#270](https://github.com/Kotlin/kotlin-jupyter/issues/270)
46+
- Add resource builder for Notebook API [\#129](https://github.com/Kotlin/kotlin-jupyter/issues/129)
47+
- Load static resources via module descriptions [\#74](https://github.com/Kotlin/kotlin-jupyter/issues/74)
48+
- Autoremove closing bracket when opening is removed [\#245](https://github.com/Kotlin/kotlin-jupyter/issues/245)
3249
- Allow setting JDK to use [\#284](https://github.com/Kotlin/kotlin-jupyter/issues/284)
3350
- Pass args on JVM startup [\#72](https://github.com/Kotlin/kotlin-jupyter/issues/72)
3451

@@ -381,7 +398,7 @@
381398

382399

383400
## [v0.7.2](https://github.com/Kotlin/kotlin-jupyter/tree/v0.7.2) (2019-12-04)
384-
[View commits](https://github.com/Kotlin/kotlin-jupyter/compare/e5987c6b8ef58a26a9a28cd8a7b2ec515fe9f9d4...v0.7.2)
401+
[View commits](https://github.com/Kotlin/kotlin-jupyter/compare/105aef7d9d52a855328f845d5c79dd37025944ff...v0.7.2)
385402

386403
**Closed issues:**
387404

build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@ changelog {
132132
githubUser = rootSettings.githubRepoUser
133133
githubRepository = rootSettings.githubRepoName
134134
excludeLabels = listOf("wontfix", "duplicate", "no-changelog", "question")
135+
customTagByIssueNumber = mapOf(
136+
20 to "0.10.0.183",
137+
318 to "0.10.0.183",
138+
)
135139
}
136140

137141
kotlinPublications {

0 commit comments

Comments
 (0)