Skip to content

Commit

Permalink
Increment version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
boyter committed Sep 21, 2016
1 parent 5a1688a commit a0671f3
Show file tree
Hide file tree
Showing 68 changed files with 75 additions and 71 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Expand Up @@ -4,7 +4,7 @@ Copyright (C) 2016 Ben Boyter

Licensor: Boyter Online Services

Software: searchcode server 1.3.0
Software: searchcode server 1.3.1

Use Limitation: 5 users

Expand Down
8 changes: 6 additions & 2 deletions README.md
Expand Up @@ -80,7 +80,7 @@ To upgrade your current instance of searchcode perform the following steps.
* You can either
* Copy the uncompressed files over your current instance overwriting if prompted.
* Copy the directory dependancy-jars and all contents overwriting your current
* Copy the following files searchcode-1.3.0.jar searchcode-server.bar and searchcode-server.sh to your instance directory
* Copy the following files searchcode-1.3.1.jar searchcode-server.bar and searchcode-server.sh to your instance directory
* Start your instance again
* Login to the admin screen and click the "Recrawl & Rebuild Indexes" button

Expand All @@ -94,14 +94,18 @@ Use of this software is governed by the Fair Source License included in the LICE

In order to deal with the case of my death or this software becoming abandoned it has an open eventually clause where the licence will change exactly 3 years after the publish date of a version release. This means that if version 1.0.0 was released on 1 July 2010 then it can be taken using the listed alternate licence on 2 July 2013. This licence, version and time is all specified below.

After the following date 20 September 2019 this software version '1.3.0' is dual licenced under the Fair Source Licence included in the LICENSE.txt file or under the GNU General Public License Version 3 with terms specified at https://www.gnu.org/licenses/gpl-3.0.txt
After the following date DATE NOT SPECIFIED this software version '1.3.1' is dual licenced under the Fair Source Licence included in the LICENSE.txt file or under the GNU General Public License Version 3 with terms specified at https://www.gnu.org/licenses/gpl-3.0.txt

OWASP Database is licensed under https://creativecommons.org/licenses/by-sa/3.0/ sourced under Creative Commons from https://codecrawler.codeplex.com/ https://www.owasp.org/index.php/Category:OWASP_Code_Crawler and https://www.owasp.org/index.php/OWASP_Code_Review_Guide_Table_of_Contents this database was modified to JSON and with slight corrections to spelling and puncuation where applicable.


Change Log
==========

XX XXXXXXXXX XXXX - 1.3.1
- Fix potential performance issue in spelling corrector with long strings
-

20 September 2016 - 1.3.0
- Filters now apply instantly when clicked option is toggleable
- OWASP checking on code result pages based on OWASP code crawler
Expand Down
4 changes: 2 additions & 2 deletions fabfile.py
Expand Up @@ -6,7 +6,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/
'''

Expand All @@ -28,7 +28,7 @@
import sys
import datetime

VERSION = "1.3.0"
VERSION = "1.3.1"

def run_proxy():
local('python ./assets/javascript_proxy/webserver.py')
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>com.searchcode.app</groupId>
<artifactId>searchcode</artifactId>
<packaging>jar</packaging>
<version>1.3.0</version>
<version>1.3.1</version>
<name>searchcode</name>
<url>http://maven.apache.org</url>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion searchcode-server.bat
@@ -1,2 +1,2 @@
echo "Launching searchcode server..."
java -jar searchcode-1.3.0.jar
java -jar searchcode-1.3.1.jar
2 changes: 1 addition & 1 deletion searchcode-server.sh
@@ -1,3 +1,3 @@
#!/bin/bash
echo "Launching searchcode server..."
java -jar searchcode-1.3.0.jar
java -jar searchcode-1.3.1.jar
4 changes: 2 additions & 2 deletions src/main/java/com/searchcode/app/App.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app;
Expand Down Expand Up @@ -54,7 +54,7 @@
public class App {

private static final boolean ISCOMMUNITY = true;
private static final String VERSION = "1.3.0";
private static final String VERSION = "1.3.1";
private static final LoggerWrapper LOGGER = Singleton.getLogger();
public static Map<String, SearchResult> cache = ExpiringMap.builder().expirationPolicy(ExpirationPolicy.ACCESSED).expiration(60, TimeUnit.SECONDS).build();
public static Injector injector;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.config;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.config;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.config;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.config;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/config/Values.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.config;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dao/Api.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dao;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dao/Data.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dao;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dao/IApi.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dao;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dao/IData.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dao;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dao/IRepo.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dao;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dao/Repo.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dao;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/CodeFacetOwner.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/CodeFacetRepo.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/CodeMatchResult.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/CodeOwner.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/CodePreload.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/CodeResult.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/SearchResult.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/dto/api/ApiResponse.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto.api;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.dto.api;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.jobs;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.jobs;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.jobs;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.jobs;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.jobs;
Expand Down
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/


Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/jobs/IndexGitRepoJob.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.jobs;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/jobs/IndexSvnRepoJob.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.jobs;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/searchcode/app/model/ApiResult.java
Expand Up @@ -5,7 +5,7 @@
* in the LICENSE.TXT file, but will be eventually open under GNU General Public License Version 3
* see the README.md for when this clause will take effect
*
* Version 1.3.0
* Version 1.3.1
*/

package com.searchcode.app.model;
Expand Down

0 comments on commit a0671f3

Please sign in to comment.