Skip to content

Commit

Permalink
Release 1.3.8
Browse files Browse the repository at this point in the history
1. Bug fixed for $time
  • Loading branch information
Yuhan ZOU committed May 3, 2016
1 parent a19c48d commit 84aab8c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Add the following lines to your project's pom.xml:
<dependency>
<groupId>com.sensorsdata.analytics.javasdk</groupId>
<artifactId>SensorsAnalyticsSDK</artifactId>
<version>1.3.7</version>
<version>1.3.8</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion SensorsAnalyticsSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<groupId>com.sensorsdata.analytics.javasdk</groupId>
<name>SensorsAnalyticsSDK</name>
<artifactId>SensorsAnalyticsSDK</artifactId>
<version>1.3.7</version>
<version>1.3.8</version>
<description>The official Java SDK of Sensors Analytics</description>
<url>http://sensorsdata.cn</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ public class SensorsDataAPI {
private final static Logger log = LoggerFactory.getLogger(SensorsDataAPI.class);

private final static int EXECUTE_THREAD_NUMBER = 10;
private final static String SDK_VERSION = "1.3.7";
private final static String SDK_VERSION = "1.3.8";

private final static Pattern KEY_PATTERN = Pattern.compile(
"^((?!^distinct_id$|^original_id$|^time$|^properties$|^id$|^first_id$|^second_id$|^users$|^events$|^event$|^user_id$|^date$|^datetime$)[a-zA-Z_$][a-zA-Z\\d_$]{0,99})$",
Pattern.CASE_INSENSITIVE);
private final static SimpleDateFormat DATE_FORMAT =
new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS");
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");

private static SensorsDataAPI instance = null;

Expand Down

0 comments on commit 84aab8c

Please sign in to comment.