Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit 67a31a7

Browse files
committed
Increment version to 1.3.7
1 parent 07b5877 commit 67a31a7

76 files changed

Lines changed: 82 additions & 79 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Copyright (C) 2016 Ben Boyter
44

55
Licensor: Boyter Online Services
66

7-
Software: searchcode server 1.3.6
7+
Software: searchcode server 1.3.7
88

99
Use Limitation: 5 users
1010

README.md

Lines changed: 5 additions & 2 deletions

fabfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
77
* see the README.md for when this clause will take effect
88
*
9-
* Version 1.3.6
9+
* Version 1.3.7
1010
*/
1111
'''
1212

@@ -30,7 +30,7 @@
3030
import sys
3131
import datetime
3232

33-
VERSION = "1.3.6"
33+
VERSION = "1.3.7"
3434

3535

3636
def setup_npm():

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.searchcode.app</groupId>
55
<artifactId>searchcode</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.3.6</version>
7+
<version>1.3.7</version>
88
<name>searchcode</name>
99
<url>http://maven.apache.org</url>
1010
<properties>

searchcode-server.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
echo "Launching searchcode server..."
2-
java -jar searchcode-1.3.6.jar
2+
java -jar searchcode-1.3.7.jar
33

searchcode-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22
echo "Launching searchcode server..."
3-
exec java -jar searchcode-1.3.6.jar "$@"
3+
exec java -jar searchcode-1.3.7.jar "$@"

src/main/java/com/searchcode/app/App.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
66
* see the README.md for when this clause will take effect
77
*
8-
* Version 1.3.6
8+
* Version 1.3.7
99
*/
1010

1111
package com.searchcode.app;
@@ -40,7 +40,7 @@
4040
public class App {
4141

4242
public static final boolean ISCOMMUNITY = true;
43-
public static final String VERSION = "1.3.6";
43+
public static final String VERSION = "1.3.7";
4444
private static final LoggerWrapper LOGGER = Singleton.getLogger();
4545

4646
public static void main (String[] args) {

src/main/java/com/searchcode/app/config/DatabaseConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
66
* see the README.md for when this clause will take effect
77
*
8-
* Version 1.3.6
8+
* Version 1.3.7
99
*/
1010

1111
package com.searchcode.app.config;

src/main/java/com/searchcode/app/config/IDatabaseConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
66
* see the README.md for when this clause will take effect
77
*
8-
* Version 1.3.6
8+
* Version 1.3.7
99
*/
1010

1111
package com.searchcode.app.config;

src/main/java/com/searchcode/app/config/SQLiteDatabaseConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
66
* see the README.md for when this clause will take effect
77
*
8-
* Version 1.3.6
8+
* Version 1.3.7
99
*/
1010

1111
package com.searchcode.app.config;

0 commit comments

Comments
 (0)