Skip to content

Commit

Permalink
Merge pull request #6 from ZoftWhere/release/3.0.0
Browse files Browse the repository at this point in the history
Release 3.0.0
  • Loading branch information
zoftwhere-admin authored Oct 11, 2020
2 parents 8f9d9e0 + 9755988 commit eab3cd2
Show file tree
Hide file tree
Showing 56 changed files with 663 additions and 232 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# IDE files
/.idea/*
!/.idea/codeStyles/
/.idea/dictionaries
/.idea/inspectionProfiles
/.idea/shelf
/.idea/libraries
/.idea/*.xml

# Maven target
/_target
Expand Down
85 changes: 73 additions & 12 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions .idea/mutable-library.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions .idea/runConfigurations/Mutable_Tests.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions .idea/runConfigurations/compile_check.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions .idea/runConfigurations/repackage_java8_jdk8.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Release Notes v2.0.0
# Release Notes v2.0.0

- Updated Copyright for 2020.
- Updated JavaDoc for MutableValue class.
Expand Down
12 changes: 12 additions & 0 deletions main-github/release-notes/3.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Release Notes v3.0.0

- Updated project to use single base package.
- Updated code coverage for Place Holder interface default methods.
- Updated Maven project file.
- Added project details.
- Updated plugin versions.
- Updated JUnit dependency.
- Updated git ignore file.
- Added IntelliJ project files.
- Added project file.
- Added code style.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package app.zoftwhere.mutable;
package app.zoftwhere.mutable.collection;

import java.util.function.Function;

import app.zoftwhere.function.Consumer0;
import app.zoftwhere.function.Transformer0;
import app.zoftwhere.mutable.function.Consumer0;
import app.zoftwhere.mutable.function.Transformer0;

public class MutableTransformer0<R> extends MutableValue<R> implements Transformer0<R> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package app.zoftwhere.mutable;
package app.zoftwhere.mutable.collection;

import java.util.function.Function;

import app.zoftwhere.function.Consumer1;
import app.zoftwhere.function.Transformer1;
import app.zoftwhere.mutable.function.Consumer1;
import app.zoftwhere.mutable.function.Transformer1;

public class MutableTransformer1<T, R> extends MutableValue<R> implements Transformer1<T, R> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package app.zoftwhere.mutable;
package app.zoftwhere.mutable.collection;

import java.util.function.Function;

import app.zoftwhere.function.Consumer2;
import app.zoftwhere.function.Transformer2;
import app.zoftwhere.mutable.function.Consumer2;
import app.zoftwhere.mutable.function.Transformer2;

public class MutableTransformer2<T1, T2, R> extends MutableValue<R> implements Transformer2<T1, T2, R> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package app.zoftwhere.mutable;
package app.zoftwhere.mutable.collection;

import java.util.function.Function;

import app.zoftwhere.function.Consumer3;
import app.zoftwhere.function.Transformer3;
import app.zoftwhere.mutable.function.Consumer3;
import app.zoftwhere.mutable.function.Transformer3;

public class MutableTransformer3<T1, T2, T3, R> extends MutableValue<R> implements Transformer3<T1, T2, T3, R> {

Expand Down
Loading

0 comments on commit eab3cd2

Please sign in to comment.