Skip to content

Commit 00177b9

Browse files
chore(release): 0.10.0-rc.8
1 parent a9ee3b2 commit 00177b9

12 files changed

Lines changed: 18 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.10.0-rc.8](https://github.com/ls1intum/Hephaestus/compare/v0.10.0-rc.7...v0.10.0-rc.8) (2025-10-29)
4+
5+
### 🚀 Features
6+
7+
* add PostHog survey ([#515](https://github.com/ls1intum/Hephaestus/issues/515)) ([a9ee3b2](https://github.com/ls1intum/Hephaestus/commit/a9ee3b26ba9294b97237e0903dc4f5de49228462))
8+
39
## [0.10.0-rc.7](https://github.com/ls1intum/Hephaestus/compare/v0.10.0-rc.6...v0.10.0-rc.7) (2025-10-28)
410

511
## [0.10.0-rc.6](https://github.com/ls1intum/Hephaestus/compare/v0.10.0-rc.5...v0.10.0-rc.6) (2025-10-28)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/application-server/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ info:
88
name: MIT License
99
url: https://github.com/ls1intum/Hephaestus/blob/develop/LICENSE
1010
title: Hephaestus API
11-
version: 0.10.0-rc.7
11+
version: 0.10.0-rc.8
1212
servers:
1313
- description: Default Server URL
1414
url: /

server/application-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</parent>
1313
<groupId>de.tum.in.www1</groupId>
1414
<artifactId>hephaestus</artifactId>
15-
<version>0.10.0-rc.7-SNAPSHOT</version>
15+
<version>0.10.0-rc.8-SNAPSHOT</version>
1616
<name>Hephaestus</name>
1717
<description>AI-driven learning for better software development</description>
1818
<url/>

server/application-server/src/main/java/de/tum/in/www1/hephaestus/OpenAPIConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
info = @Info(
2727
title = "Hephaestus API",
2828
description = "API documentation for the Hephaestus application server.",
29-
version = "0.10.0-rc.7",
29+
version = "0.10.0-rc.8",
3030
contact = @Contact(name = "Felix T.J. Dietrich", email = "felixtj.dietrich@tum.de"),
3131
license = @License(name = "MIT License", url = "https://github.com/ls1intum/Hephaestus/blob/develop/LICENSE")
3232
),

server/application-server/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
spring:
22
application:
33
name: Hephaestus
4-
version: "0.10.0-rc.7"
4+
version: "0.10.0-rc.8"
55

66
datasource:
77
url: jdbc:postgresql://localhost:5432/hephaestus

server/intelligence-service/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
app = FastAPI(
88
title="Hephaestus Intelligence Service API",
99
description="API documentation for the Hephaestus Intelligence Service.",
10-
version="0.10.0-rc.7",
10+
version="0.10.0-rc.8",
1111
contact={"name": "Felix T.J. Dietrich", "email": "felixtj.dietrich@tum.de"},
1212
)
1313

server/intelligence-service/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1451,7 +1451,7 @@ info:
14511451
name: Felix T.J. Dietrich
14521452
description: API documentation for the Hephaestus Intelligence Service.
14531453
title: Hephaestus Intelligence Service API
1454-
version: 0.10.0-rc.7
1454+
version: 0.10.0-rc.8
14551455
openapi: 3.1.0
14561456
paths:
14571457
/detector/:

server/intelligence-service/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "intelligence-service"
3-
version = "0.10.0-rc.7"
3+
version = "0.10.0-rc.8"
44
description = "A FastAPI service for interfacing with machine learning models."
55
authors = [
66
{ name = "Felix T.J. Dietrich", email = "felixtj.dietrich@tum.de"},

server/webhook-ingest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "webhook-ingest"
3-
version = "0.10.0-rc.7"
3+
version = "0.10.0-rc.8"
44
description = "A FastAPI service for ingesting GitHub webhooks and publishing events to NATS JetStream."
55
authors = [
66
{ name = "Felix T.J. Dietrich", email = "felixtj.dietrich@tum.de"}

0 commit comments

Comments
 (0)