Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.2.0 🎉 #65

Merged
merged 47 commits into from
Aug 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
ff2a41f
pip updated(deps): bump lxml from 4.9.2 to 4.9.3
dependabot[bot] Jul 5, 2023
b5f3c88
Moved all exceptions to `exception` directory
mitsuki31 Jul 9, 2023
6a0f288
Changed its package name for moved classes
mitsuki31 Jul 9, 2023
5949e85
Fixed the `import` on several classes
mitsuki31 Jul 9, 2023
09f14d6
Moved the `MatrixUtils` class to `core` directory
mitsuki31 Jul 9, 2023
e6c04f6
Fixed the `import` in `Matrix` class
mitsuki31 Jul 9, 2023
944fe65
Fix the `import` in test classes
mitsuki31 Jul 9, 2023
15c7f62
Update the documentation
mitsuki31 Jul 10, 2023
78f6c51
Merge branch 'master' into dependabot/pip/lxml-4.9.3
mitsuki31 Jul 15, 2023
d88ffc7
Remove `public` keyword to avoid confusion
mitsuki31 Jul 16, 2023
a036566
Remove `public` keyword to avoid confusion
mitsuki31 Jul 16, 2023
5ccb525
Merge branch 'feature' of github.com:mitsuki31/jmatrix into feature
mitsuki31 Jul 16, 2023
3d877f0
Improve code organization and restructuring code (#59)
mitsuki31 Jul 16, 2023
be5cad4
Rename and update the documentation
mitsuki31 Jul 18, 2023
85f80d4
Add javadoc to `IllegalMatrixSizeException`
mitsuki31 Jul 18, 2023
fadc79e
Add javadoc to `InvalidIndexException`
mitsuki31 Jul 18, 2023
85e0190
Deprecate the `MatrixArrayFullException`
mitsuki31 Jul 18, 2023
ccf060f
Add javadoc to `NullMatrixException`
mitsuki31 Jul 18, 2023
32176f2
Fix the import statements in several classes
mitsuki31 Jul 18, 2023
67ca97f
Add `serialVersionUID` to all JMatrix exceptions
mitsuki31 Jul 18, 2023
c73dc60
Update the version and the last modified date
mitsuki31 Jul 18, 2023
fb37d32
Exception enhancements and deprecation ☂️ (#60)
mitsuki31 Jul 18, 2023
ec1bd01
Javadoc improvements for JMatrix 📚 (#61)
mitsuki31 Jul 19, 2023
6b3d67c
pip updated(deps): bump lxml from 4.9.2 to 4.9.3 (#56)
dependabot[bot] Jul 19, 2023
89e1fed
Add new matrix type checker
mitsuki31 Jul 30, 2023
13dd86c
Overload the `isLowerTriangular` method
mitsuki31 Jul 30, 2023
ccca585
Add javadoc to `isLowerTriangular` method
mitsuki31 Jul 30, 2023
0557b9b
Add new matrix type checker
mitsuki31 Jul 30, 2023
ad09dd5
Add javadoc to `isUpperTriangular` methods
mitsuki31 Jul 31, 2023
ef282af
Update the javadocs on recently added methods
mitsuki31 Jul 31, 2023
9b35ab8
Update the `README.md`
mitsuki31 Jul 31, 2023
45f0577
Update the `README.md`
mitsuki31 Jul 31, 2023
6078663
Update the javadoc and fix the javadoc error
mitsuki31 Aug 1, 2023
6a5b081
Update the `README.md`
mitsuki31 Aug 1, 2023
eeb3073
Matrix type checkers additions 🔎 (#62)
mitsuki31 Aug 1, 2023
2615b7c
Update and fix bad links
mitsuki31 Aug 2, 2023
58ff892
Small fix to `README.md`
mitsuki31 Aug 2, 2023
b874465
Update the 'Author' and 'License' section
mitsuki31 Aug 2, 2023
c908297
Several changes for `README.md`
mitsuki31 Aug 3, 2023
484b83d
Update `README.md`
mitsuki31 Aug 4, 2023
0193bcb
Update `README.md`
mitsuki31 Aug 4, 2023
5b3f14d
Fix the examples of matrix
mitsuki31 Aug 5, 2023
2f28009
Update the 'Constructor Summary'
mitsuki31 Aug 5, 2023
1b2d895
Improve the 'Matrix Operations' section
mitsuki31 Aug 6, 2023
068d3e0
Merge branch 'master' into docs/update-readme
mitsuki31 Aug 6, 2023
34aeca4
Improving project documentation ⚡ (#64)
mitsuki31 Aug 6, 2023
82e5b80
Update the version (forced)
mitsuki31 Aug 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Built-By: Ryuu Mitsuki
License-File: LICENSE
Main-Class: com.mitsuki.jmatrix.Main
Program-Name: JMatrix
Program-Version: v1.1.0
Program-Version: v1.2.0
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Recommended Make version: 4.4.*+

# WARNING! Don't change this version manually, it's autogenerated!
VERSION := 1.1.0
VERSION := 1.2.0
PREFIX := [jmatrix]

CC := javac
Expand Down
503 changes: 333 additions & 170 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<properties>
<author.name>Ryuu Mitsuki</author.name>
<package.name>JMatrix</package.name>
<package.version.core>1.1.0</package.version.core>
<package.version.core>1.2.0</package.version.core>
<package.mainClass>com.mitsuki.jmatrix.Main</package.mainClass>
<package.releaseType>stable</package.releaseType>
<package.betaNum>0</package.betaNum>
Expand All @@ -33,7 +33,7 @@
<groupId>com.mitsuki</groupId>
<artifactId>jmatrix</artifactId>
<packaging>jar</packaging>
<version>1.1.0</version>
<version>1.2.0</version>

<profiles>
<!--
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
beautifulsoup4==4.11.1
lxml==4.9.2
lxml==4.9.3
24 changes: 23 additions & 1 deletion src/main/java/com/mitsuki/jmatrix/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,26 @@
*
* @author <a href="https://github.com/mitsuki31" target="_blank">
* Ryuu Mitsuki</a>
* @version 1.31, 27 June 2023
* @version 1.32, 19 July 2023
* @since 1.0.0b.1
* @see com.mitsuki.jmatrix.Matrix
*/
public class Main
{
/**
* Stores the static object class of {@link XMLParser} class.
*/
private static XMLParser XML = new XMLParser(XMLParser.XMLType.CONFIG);

/**
* Stores a string that represents the concatenation of:
*
* <ul>
* <li>The program name
* <li>(a space)
* <li>The version number
* </ul>
*/
private static String programVersion = XML.getProperty("programName") + " " + getVersion();

/**
Expand Down Expand Up @@ -100,6 +113,15 @@ public static void main(String[ ] args) {
}
}


/**
* Gets the version number and concanate it with the release type.
* And concanate again with the beta number if and only if the release type is "beta".
*
* @return a string represents the version number.
*
* @since 1.0.0
*/
private static String getVersion() {
String ver = XML.getProperty("version");

Expand Down
Loading
Loading