Skip to content

Commit 3e0de0b

Browse files
authored
Merge pull request #15 from embabel/release-train
Update version to 0.1.0-SNAPSHOT
2 parents a107be8 + 97f1016 commit 3e0de0b

File tree

4 files changed

+39
-10
lines changed

4 files changed

+39
-10
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
<parent>
66
<groupId>com.embabel.build</groupId>
77
<artifactId>embabel-build-parent</artifactId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>0.1.0-SNAPSHOT</version>
99
</parent>
1010
<groupId>com.embabel.coding</groupId>
1111
<artifactId>coding-agent</artifactId>
12-
<version>1.0.0-SNAPSHOT</version>
12+
<version>0.1.0-SNAPSHOT</version>
1313
<packaging>jar</packaging>
1414
<name>Embabel Coding Agent</name>
1515
<description>Embabel Agentic Flow for Software Engineers</description>
1616

1717
<properties>
18-
<embabel-common.version>1.0.0-SNAPSHOT</embabel-common.version>
19-
<embabel-agent-api.version>1.0.0-SNAPSHOT</embabel-agent-api.version>
20-
<examples-common.version>1.0.0-SNAPSHOT</examples-common.version>
18+
<embabel-common.version>0.1.0-SNAPSHOT</embabel-common.version>
19+
<embabel-agent-api.version>0.1.0-SNAPSHOT</embabel-agent-api.version>
20+
<examples-common.version>0.1.0-SNAPSHOT</examples-common.version>
2121
</properties>
2222

2323
<!-- Embabel BOM(s) -->

src/main/kotlin/com/embabel/coding/agent/Coder.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ class Coder(
198198
promptContributors = listOf(project, coderProperties.codeModificationDirections()),
199199
).create(
200200
"""
201-
Execute the following user request to modify code in the given project.
201+
Execute the following user request to modify code in the given project.
202202
Use the project information to help you understand the code.
203203
The project will be in git so you can safely modify content without worrying about backups.
204204
Return an explanation of what you did and why.
@@ -241,12 +241,12 @@ class Coder(
241241
).create(
242242
"""
243243
Modify code in the given project to fix the broken build.
244-
244+
245245
Use the project information to help you understand the code.
246246
The project will be in git so you can safely modify content without worrying about backups.
247247
Return an explanation of what you did and why.
248248
Consider the build failure report.
249-
249+
250250
DO NOT BUILD THE PROJECT. JUST MODIFY CODE.
251251
Consider the following user request for the necessary functionality:
252252
"${codeModificationRequest.request}"

src/main/kotlin/com/embabel/coding/agent/CodingCommands.kt

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2024-2025 Embabel Software, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package com.embabel.coding.agent
217

318
import org.springframework.shell.standard.ShellComponent
@@ -16,4 +31,4 @@ class CodingCommands(private val taskFocus: TaskFocus) {
1631
fun setFocus(@ShellOption name: String): String {
1732
return taskFocus.setFocus(name)?.root ?: "No project found with name containing '$name'."
1833
}
19-
}
34+
}

src/main/kotlin/com/embabel/coding/agent/TaskFocus.kt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2024-2025 Embabel Software, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package com.embabel.coding.agent
217

318
import com.embabel.coding.domain.SoftwareProject
@@ -22,4 +37,3 @@ class TaskFocus(private val softwareProjectRepository: SoftwareProjectRepository
2237
return newFocus
2338
}
2439
}
25-

0 commit comments

Comments
 (0)