Skip to content
This repository was archived by the owner on Oct 20, 2022. It is now read-only.

Commit 23ff269

Browse files
Prepare for release 1.0.3 - Upgrade build version. Update release notes.
1 parent e4de7d5 commit 23ff269

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

ReleaseNotes.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
Version 1.0.3
2+
-----------------------------------------
3+
- Move from google-collect-1.0 to guava-r07.
4+
- Changed Json output to be valid Json format: Added quotation marks around
5+
all keys and string values. Date values are formated as"Date(2011,1,1)".
6+
Note: for jsonp dates remain as they were before and the Date object is
7+
returned in the json string, e.g., new Date(2011,1,1).
8+
- Added support for SKIPPING clause in the query language.
9+
- Added support for MODULO operator in the query language.
10+
- Fixed bug: java.util.TreeMap initialization in QueryEngine causes
11+
compilation error.
12+
- Fixed bug: Where clause with column names that contain spaces does not work
13+
for SQL datasources (Issue 16).
14+
- Fixed bug: SQL data source dates are shifted (Issue 11).
15+
- Changed initialization of Timestamp in SQLDataSourceHelperTest.
16+
- Add a message to the IllegalArgumentException thrown when a
17+
DateValue/DateTimeValue/TimeOfDayValue is created with a GregorianCalendar
18+
that is not GMT.
19+
- Externalized error messages.
20+
- Removed unnecessary servlet from web.xml.
21+
122
Version 1.0.2
223
-----------------------------------------
324
- Added maven build (pom.xml).

build-src/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# EDIT THIS to point to Sun's Servlet API jar provided with your servlet container.
44
# For example, if you use tomcat you will find it under <tomcat_home>/lib/servlet-api.jar
5-
servlet-api.jar=../lib/servlet-api-2.4.jar
5+
servlet-api.jar=../lib/servlet-api.jar
66

77
# You may want to edit the following dependencies if you wish to use your own copy of them.
88
guava.jar=../lib/guava-r07.jar

build-src/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<pathelement location="${servlet-api.jar}"/>
5959
</classpath>
6060
</javac>
61-
<jar destfile="${build}/visualization-datasource-1.0.2.jar"
61+
<jar destfile="${build}/visualization-datasource-1.0.3.jar"
6262
basedir="${build.class.main}"/>
6363
</target>
6464

@@ -124,7 +124,7 @@
124124

125125
<!-- Jar the sources. -->
126126
<target name="source-jar">
127-
<jar destfile="${build}/visualization-datasource-1.0.2-src.jar"
127+
<jar destfile="${build}/visualization-datasource-1.0.3-src.jar"
128128
basedir="${src}/main/java" />
129129
</target>
130130

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<groupId>com.google.visualization</groupId>
1111
<artifactId>visualization-datasource</artifactId>
1212
<name>Google Visualization Data Source Library</name>
13-
<version>1.0.2</version>
13+
<version>1.0.3</version>
1414
<description>This library makes it easy to implement a Visualization data source so that you can
1515
easily chart or visualize your data from any of your data stores.
1616
The library implements the Google Visualization API wire protocol and query language.

0 commit comments

Comments
 (0)