Skip to content

Commit

Permalink
change version 0.0.2.8 to 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsun28 committed Oct 21, 2020
1 parent 3b12196 commit 597bd48
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ Resource path matching see: [Uri Match](docs/path-match.md)
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.8</version>
<version>0.1</version>
</dependency>
```
2. When use gradle build project, add gradle coordinate
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.8'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.1'
```
3. When not java build project, add sureness-core.jar to classPath
```
Expand Down
4 changes: 2 additions & 2 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ api的保护可以认为:认证-请求携带的认证信息是否校验通过
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.8</version>
<version>0.1</version>
</dependency>
```

2. 项目使用`gradle`构建,`gradle`坐标
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.8'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.1'
```

3. 项目为普通工程,加入`sureness-core.jar`依赖
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.8</version>
<version>0.1</version>
<packaging>jar</packaging>

<name>sureness</name>
Expand Down
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](_media/hat-128.svg)

# sureness <small>0.0.2.8 for jvm</small>
# sureness <small>0.1 for jvm</small>

> Focusing on Protection of Restful Api.
Expand Down
2 changes: 1 addition & 1 deletion docs/cn/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](../_media/hat-128.svg)

# sureness <small>0.0.2.8 for jvm</small>
# sureness <small>0.1 for jvm</small>

> A Simple and Efficient Open-source Jvm Security Framework that Focus on Protection of Restful Api.
Expand Down
4 changes: 2 additions & 2 deletions docs/cn/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.7</version>
<version>0.1</version>
</dependency>
```

2. 项目使用`gradle`构建,`gradle`坐标
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.7'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.1'
```

3. 项目为普通工程,加入`sureness-core.jar`依赖
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ Resource path matching see: [Uri Match](path-match.md)
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>0.0.2.8</version>
<version>0.1</version>
</dependency>
```
2. When use gradle build project, add gradle coordinate
```
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.0.2.8'
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '0.1'
```
3. When not java build project, add sureness-core.jar to classPath
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sureness-core.version>0.0.2.8</sureness-core.version>
<sureness-core.version>0.1</sureness-core.version>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down

0 comments on commit 597bd48

Please sign in to comment.