-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #19
- Loading branch information
Showing
25 changed files
with
511 additions
and
831 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
# Parso Java library | ||
## Parso 2.0.8 | ||
***12 January 2018*** | ||
|
||
* Changed license to ALv2 | ||
|
||
## Parso 2.0.7 | ||
***24 March 2017*** | ||
|
||
* Fixed handling of none seekable binary channel. | ||
* Fixed handling of non-seekable binary channel. | ||
* Added ability to set locale used for dates in csv file. | ||
|
||
## Parso 2.0.6 | ||
|
@@ -144,13 +149,21 @@ csvDataWriter.writeRow(sasFileReader.getColumns(), sasFileReader.readNext()); | |
``` | ||
|
||
## License | ||
Parso is free software: You can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 3 of the License. | ||
|
||
This program is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
|
||
You should receive a copy of the GNU General Public License along with this program. If you did not, please see http://www.gnu.org/licenses/. | ||
Copyright (C) 2015 EPAM | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
## Commercial Availability | ||
If the GPL-licensed Parso does not satisfy your needs, please contact us at [email protected] to discuss the possibility of a commercial license. | ||
If the ALv2-licensed Parso does not satisfy your needs, please contact us at [email protected] to discuss the possibility of a commercial license. | ||
|
||
We hope that you decide to use the Parso library. At EPAM, we are available to help you use, integrate, and support Parso. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.epam</groupId> | ||
<artifactId>parso</artifactId> | ||
<version>2.0.7</version> | ||
<version>2.0.8</version> | ||
<packaging>jar</packaging> | ||
<name>parso</name> | ||
<description>Parso is a lightweight Java library designed to read SAS7BDAT datasets. The Parso interfaces | ||
|
@@ -13,21 +13,22 @@ | |
statistical data often stored in SAS7BDAT format. Parso allows converting data into CSV format. | ||
</description> | ||
<url>https://github.com/epam/parso</url> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU General Public License v3</name> | ||
<url>http://www.gnu.org/licenses/gpl.html</url> | ||
<name>Apache License v2</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<name>Petr Tsurinov</name> | ||
<email>[email protected]</email> | ||
<organization>EPAM</organization> | ||
<organizationUrl>http://www.epam.com</organizationUrl> | ||
<email>[email protected]</email> | ||
</developer> | ||
<developer> | ||
<name>Igor Printsev</name> | ||
|
@@ -70,7 +71,6 @@ | |
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
<encoding>utf-8</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
|
@@ -116,6 +116,11 @@ | |
<artifactId>nexus-staging-maven-plugin</artifactId> | ||
<version>1.6.3</version> | ||
<extensions>true</extensions> | ||
<executions> | ||
<execution> | ||
<phase>deploy</phase> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<serverId>ossrh</serverId> | ||
<nexusUrl>https://oss.sonatype.org/</nexusUrl> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 13 additions & 10 deletions
23
src/main/java/com/epam/parso/impl/CSVMetadataWriterImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.