Skip to content

Commit

Permalink
Release/v1.102.4 (#17)
Browse files Browse the repository at this point in the history
* start v1.102.3-SNAPSHOT (#12)

* Add SCM info to POM.

* Add SCM info to POM.

* Add CHANGELOG.md

* Redundant description omitted with surefire report.

* Add findbugs plugin for Maven.

* Add Jacoco plugin for Maven.

* Add PMD plugin for Maven.

* Add checkstyle plugin for Maven.

* modify WhitespaceAfter tokens for checkstyle

* Specifying target attribute to external links.

* Add Jacoco rules.

* Speeding up register operation

* remove redundant bit operation

* Add bound check with getDigit()

* modify CHANGELOG

* modify EOL?

* Release 1.102.4 preparation
  • Loading branch information
olyutorskii committed Feb 2, 2017
1 parent bbe8f82 commit 6974164
Show file tree
Hide file tree
Showing 8 changed files with 811 additions and 79 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
DoubDabC Changelog
===================

## v1.102.4
Released on 2017-02-XX
- Speed-up converting
- Add static code analysis report plugin. (checkstyle,PMD,FindBugs)
- Add code coverage report plugin. (Jacoco)
- Add SCM info to POM. #13
- Add CHANGELOG.md #14

## v1.101.2
Released on 2017-01-03
- Initial Release

--- EOF ---
40 changes: 40 additions & 0 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">

<!--
Checkstyle suppressions
for Checkstyle 6.19(7.4) or later
[ http://checkstyle.sourceforge.net/ ]
Copyright(c) 2017 olyutorskii
-->


<suppressions>

<!-- Class Design -->
<suppress files="" checks="DesignForExtension" />

<!-- Coding -->
<suppress files="" checks="ExplicitInitialization" />
<suppress files="" checks="FinalLocalVariable" />
<suppress files="" checks="MagicNumber" />

<!-- Imports -->
<suppress files="" checks="ImportControl" />

<!-- Miscellaneous -->
<suppress files="" checks="FinalParameters" />
<suppress files="" checks="TrailingComment" />

<!-- Whitespace -->
<suppress files="" checks="SingleSpaceSeparator" />

</suppressions>


<!-- EOF -->
Loading

0 comments on commit 6974164

Please sign in to comment.