Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix jbang-example.java shebang line and dependency version
The first line was a bare '!' instead of the proper JBang shebang
'///usr/bin/env jbang'. Also updated the dependency version from
0.3.0-java.2 to the current 0.3.1-java.1-SNAPSHOT.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
  • Loading branch information
brunoborges and Copilot committed Apr 27, 2026
commit d841e89fb2bde30da309f382a87b348954aac478
4 changes: 2 additions & 2 deletions jbang-example.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
!
//DEPS com.github:copilot-sdk-java:0.3.0-java.2
///usr/bin/env jbang "$0" "$@" ; exit $?
Comment thread
edburns marked this conversation as resolved.
//DEPS com.github:copilot-sdk-java:0.3.1-java.1-SNAPSHOT
import com.github.copilot.sdk.CopilotClient;
import com.github.copilot.sdk.generated.AssistantMessageEvent;
import com.github.copilot.sdk.generated.SessionUsageInfoEvent;
Expand Down
Loading