Skip to content

Commit 54a3e58

Browse files
committed
v1.0.1 - 1. Fixed the Copyright. 2. Added more details to README
1 parent 2f331e1 commit 54a3e58

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 Robin Panicker
3+
Copyright (c) 2026 BasilGregory
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
A simple, lightweight, and immutable Tuple implementation for Java projects.
44

5+
> **ax-tuple-java** is an **Open Source Project** built by **Appxiom Team**
6+
> Visit [https://www.appxiom.com](https://www.appxiom.com) to know more about us.
7+
> You will love our product if you are into software engineering!
8+
9+
> MIT License
10+
511
## Overview
612

713
`ax-tuple-java` provides two main classes to manage collections of data without the need for custom DTOs or POJOs for every small data structure:
@@ -19,7 +25,7 @@ Add the following dependency to your `pom.xml`:
1925
<dependency>
2026
<groupId>com.appxiom.ax.tuple</groupId>
2127
<artifactId>ax-tuple</artifactId>
22-
<version>0.1.1</version>
28+
<version>1.0.1</version>
2329
</dependency>
2430
```
2531

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.appxiom.ax.tuple</groupId>
88
<artifactId>ax-tuple</artifactId>
9-
<version>1.0.0</version>
9+
<version>1.0.1</version>
1010

1111
<properties>
1212
<maven.compiler.source>17</maven.compiler.source>

src/main/java/com/appxiom/ax/tuple/NamedTuple.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* A named tuple implementation for Java that stores elements as key-value pairs using a Map.
33
*
44
* @author Robin Panicker
5-
* @version 1.0.0
5+
* @version 1.0.1
66
* @since 0.1.0
77
*
88
*/

src/main/java/com/appxiom/ax/tuple/Tuple.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* A simple immutable Tuple implementation for Java that can hold an arbitrary number of elements.
33
*
44
* @author Robin Panicker
5-
* @version 1.0.0
5+
* @version 1.0.1
66
* @since 0.1.0
77
*/
88
package com.appxiom.ax.tuple;

src/test/java/com/appxiom/ax/tuple/test/NamedTupleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Unit tests for the NamedTuple class.
1313
*
14-
* @version 1.0.0
14+
* @version 1.0.1
1515
* @since 0.1.0
1616
*/
1717
public class NamedTupleTest {

src/test/java/com/appxiom/ax/tuple/test/TupleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Unit tests for the Tuple class.
1313
*
14-
* @version 1.0.0
14+
* @version 1.0.1
1515
* @since 0.1.0
1616
*/
1717
public class TupleTest {

0 commit comments

Comments
 (0)