Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Jan 6, 2024
1 parent a2c73c6 commit 9715127
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ interface CGLFW {
* @param posX the position x
* @param posY the position y
*/
void glfwSetWindowPos(MemorySegment window, @Ref MemorySegment posX, @Ref MemorySegment posY);
void glfwGetWindowPos(MemorySegment window, @Ref MemorySegment posX, @Ref MemorySegment posY);

/**
* Overload another method with the same name
Expand All @@ -86,7 +86,7 @@ interface CGLFW {
* @param posY the array where to store the position y
*/
@Overload
void glfwSetWindowPos(MemorySegment window, @Ref int[] posX, @Ref int[] posY);
void glfwGetWindowPos(MemorySegment window, @Ref int[] posX, @Ref int[] posY);

/**
* {@return a UTF-16 string}
Expand All @@ -109,8 +109,8 @@ class Main {
MemorySegment bufY1 = stack.callocInt(1);
int[] bufX2 = {0};
int[] bufY2 = {0};
GLFW.glfwSetWindowPos(windowHandle, bufX1, bufY1);
GLFW.glfwSetWindowPos(windowHandle, bufX2, bufY2);
GLFW.glfwGetWindowPos(windowHandle, bufX1, bufY1);
GLFW.glfwGetWindowPos(windowHandle, bufX2, bufY2);
}
String s = GLFW.returnString();
}
Expand All @@ -123,7 +123,7 @@ Import as a Gradle dependency:

```groovy
dependencies {
def marshalVersion = "0.1.0-alpha.4"
def marshalVersion = "0.1.0-alpha.5"
annotationProcessor("io.github.over-run:marshal:$marshalVersion")
implementation("io.github.over-run:marshal:$marshalVersion")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ projGroupId=io.github.over-run
projArtifactId=marshal
# The project name should only contain lowercase letters, numbers and hyphen.
projName=marshal
projVersion=0.1.0-alpha.4
projVersion=0.1.0-alpha.5
projDesc=Marshaler of native libraries
# Uncomment them if you want to publish to maven repository.
projUrl=https://github.com/Over-Run/marshal
Expand Down

0 comments on commit 9715127

Please sign in to comment.