Skip to content

Changes

Summary

  1. Update version number to 9.0.0-SNAPSHOT. (details)
  2. Add Eclipse Collections logo. (details)
  3. Add Eclipse Collections logo in README. (details)
  4. [#319] Export all packages to OSGi (internal distinguished) (details)
  5. Add logo in reference guide. (details)
  6. Add new profiles for p2 releases. (details)
  7. Implement UnifiedMap.trimToSize(). Fixes #265. (details)
  8. Implement UnifiedSet.trimToSize(). (details)
  9. Implement adapt on factory classes. (details)
  10. Implement distinctBy on ListIterable. (details)
  11. Release version 9.0.0.M3. (details)
Commit 4c542736e6d4f885a8cc7252547aceb0dc4037a8 by hudson
Update version number to 9.0.0-SNAPSHOT.
The file was modified p2-repository/org.eclipse.collections/pom.xml (diff)
The file was modified p2-repository/pom.xml (diff)
The file was modified eclipse-collections-code-generator-maven-plugin/pom.xml (diff)
The file was modified acceptance-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator-ant/pom.xml (diff)
The file was modified eclipse-collections-code-generator/pom.xml (diff)
The file was modified eclipse-collections/pom.xml (diff)
The file was modified serialization-tests/pom.xml (diff)
The file was modified eclipse-collections-api/pom.xml (diff)
The file was modified eclipse-collections-forkjoin/pom.xml (diff)
The file was modified junit-trait-runner/pom.xml (diff)
The file was modified unit-tests-java8/pom.xml (diff)
The file was modified jmh-scala-tests/pom.xml (diff)
The file was modified test-coverage/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified performance-tests/pom.xml (diff)
The file was modified scala-unit-tests/pom.xml (diff)
The file was modified jmh-tests/pom.xml (diff)
The file was modified eclipse-collections-testutils/pom.xml (diff)
The file was modified unit-tests/pom.xml (diff)
Commit 1645e903c04f2a00515057ee64ec93d93b26e6e9 by Nikhil Nanivadekar
Add Eclipse Collections logo.
The file was addedartwork/eclipse-collections-logo.png
The file was addedartwork/eclipse-collections-logo.svg
The file was addedartwork/eclipse-collections-logo.pdf
Commit 66b162e94edd6f17a9b3fead2ee14c9d9d68f855 by Nikhil Nanivadekar
Add Eclipse Collections logo in README.
The file was modified README.md (diff)
Commit ab00c707a527127428ff2cf05035d8238088ad19 by Nikhil Nanivadekar
[#319] Export all packages to OSGi (internal distinguished)

Task-Url: https://github.com/eclipse/eclipse-collections/issues/319
Signed-off-by: bergmann <bergmann@mit.bme.hu>
The file was modified p2-repository/org.eclipse.collections/osgi.bnd (diff)
Commit 34817b404611e27da53ac9a11235b89642e3eb99 by Nikhil Nanivadekar
Add logo in reference guide.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified docs/guide.md (diff)
Commit c1c769285b699e352bbb13265492469cc13e0c71 by Nikhil Nanivadekar
Add new profiles for p2 releases.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified p2-repository/pom.xml (diff)
Commit 19493a82bc6a9fdaefc8a21790eb0f4531a257e9 by Nikhil Nanivadekar
Implement UnifiedMap.trimToSize(). Fixes #265.

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/mutable/UnifiedMapTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/map/mutable/UnifiedMap.java (diff)
Commit 2118eb7417c3d562dacf728d912892a8eff36042 by Nikhil Nanivadekar
Implement UnifiedSet.trimToSize().

Signed-off-by: Nikhil Nanivadekar <nikhil.nanivadekar@gs.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/mutable/UnifiedSetTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/set/mutable/UnifiedSet.java (diff)
Commit 4ab2ea33d152733feb164abc95c36ca95bbe6e42 by Donald Raab
Implement adapt on factory classes.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/factory/SortedSets.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/factory/Lists.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/factory/SortedMaps.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/mutable/SetAdapterTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/factory/Maps.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/mutable/MapAdapterTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/map/sorted/mutable/SortedMapAdapterTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/set/sorted/mutable/SortedSetAdapterTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/factory/Sets.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/mutable/ListAdapterTest.java (diff)
Commit 799a50ebbd92e01bf04d56fb8c0667a8949379a5 by Donald Raab
Implement distinctBy on ListIterable.

Signed-off-by: Donald Raab <Donald.Raab@bnymellon.com>
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/immutable/AbstractImmutableListTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/SynchronizedMutableList.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/list/ListIterable.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/list/ImmutableList.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/immutable/AbstractImmutableList.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/mutable/AbstractListTestCase.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/ArrayListAdapter.java (diff)
The file was modified eclipse-collections-api/src/main/java/org/eclipse/collections/api/list/MutableList.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/mutable/UnmodifiableMutableListTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/AbstractListAdapter.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/MultiReaderFastList.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/UnmodifiableMutableList.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/utility/ListIterate.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/list/immutable/ImmutableEmptyListTest.java (diff)
The file was modified unit-tests/src/test/java/org/eclipse/collections/impl/utility/ListIterateTest.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/utility/ArrayListIterate.java (diff)
The file was modified eclipse-collections/src/main/java/org/eclipse/collections/impl/list/mutable/AbstractMutableList.java (diff)
Commit 077f454aeaa348a59c25a394c0a50a4b543c6ab8 by hudson
Release version 9.0.0.M3.
The file was modified eclipse-collections-forkjoin/pom.xml (diff)
The file was modified test-coverage/pom.xml (diff)
The file was modified eclipse-collections-testutils/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified serialization-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator-maven-plugin/pom.xml (diff)
The file was modified eclipse-collections/pom.xml (diff)
The file was modified acceptance-tests/pom.xml (diff)
The file was modified jmh-scala-tests/pom.xml (diff)
The file was modified eclipse-collections-api/pom.xml (diff)
The file was modified performance-tests/pom.xml (diff)
The file was modified eclipse-collections-code-generator-ant/pom.xml (diff)
The file was modified junit-trait-runner/pom.xml (diff)
The file was modified eclipse-collections-code-generator/pom.xml (diff)
The file was modified p2-repository/pom.xml (diff)
The file was modified unit-tests-java8/pom.xml (diff)
The file was modified jmh-tests/pom.xml (diff)
The file was modified p2-repository/org.eclipse.collections/pom.xml (diff)
The file was modified scala-unit-tests/pom.xml (diff)
The file was modified unit-tests/pom.xml (diff)