Skip to content

Commit 07cf46b

Browse files
author
Trollhunters501PC
authored
Cambiar version 1.1.0 > 1.0.1
1 parent c7750c1 commit 07cf46b

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/buildJava.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
uses: actions/upload-artifact@v4
2525
with:
2626
name: ServerWebGamePost Java Edition
27-
path: java/target/ServerWebGamePost-1.0.0.jar
27+
path: java/target/ServerWebGamePost-1.1.0.jar

.github/workflows/nodejs-deno.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
uses: actions/upload-artifact@v4
3232
with:
3333
name: ServerWebGamePost NodeJS Deno Edition
34-
path: nodejs/ServerWebGamePost-1.0.0.tgz
34+
path: nodejs/ServerWebGamePost-1.1.0.tgz

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
- name: Packpage
3535
run: |
3636
mv "python" "ServerWebGamePost"
37-
tar czvf ServerWebGamePost-1.0.0.tar.gz ServerWebGamePost/
37+
tar czvf ServerWebGamePost-1.1.0.tar.gz ServerWebGamePost/
3838
- name: Upload Artifact
3939
uses: actions/upload-artifact@v4
4040
with:
4141
name: ServerWebGamePost Python Edition
42-
path: ServerWebGamePost-1.0.0.tar.gz
42+
path: ServerWebGamePost-1.1.0.tar.gz

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.creadoresprogram</groupId>
77
<artifactId>ServerWebGamePost</artifactId>
8-
<version>1.0.0</version>
8+
<version>1.1.0</version>
99
<properties>
1010
<maven.compiler.source>1.8</maven.compiler.source>
1111
<maven.compiler.target>1.8</maven.compiler.target>

nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ServerWebGamePost",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "A multiplayer server system based on web servers with POST method",
55
"main": "index.js",
66
"repository": {

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
setup(
33
name="ServerWebGamePost",
4-
version="1.0.0",
4+
version="1.1.0",
55
packages=find_packages(exclude=['tests*']),
66
license="MIT",
77
description="A multiplayer server system based on web servers with POST method",

0 commit comments

Comments
 (0)