Skip to content

Commit

Permalink
Added changelog and updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
HexagonNico committed May 28, 2024
1 parent 45aeff5 commit 40b144e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

# Version 3.1

* Added methods to extract submatrices from 2x3 and 3x4 matrices.
* Added an `affineInverse` method for 2x3 and 3x4 matrices.
* Added constructors to 2x3 and 3x4 matrices to construct a matrix from a submatrix and an additional column.
* Added `inverseLerp` function to `scalamath`.
* Added more overloaded methods for dot products.

# Version 3.0

Update 3.0

* Full project overhaul
* Finished quaternions
* Moved color math to [ColorLib](https://github.com/ScalaMath/ColorLib)
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ Due to VecMatLib not using any internal or temporal objects during any computati
### sbt

```sbt
libraryDependencies += "io.github.scalamath" % "vecmatlib" % "3.0"
libraryDependencies += "io.github.scalamath" % "vecmatlib" % "3.1"
```

### Maven
Expand All @@ -205,14 +205,14 @@ libraryDependencies += "io.github.scalamath" % "vecmatlib" % "3.0"
<dependency>
<groupId>io.github.scalamath</groupId>
<artifactId>vecmatlib</artifactId>
<version>3.0</version>
<version>3.1</version>
</dependency>
```

### Gradle

```groovy
implementation 'io.github.scalamath:vecmatlib:3.0'
implementation 'io.github.scalamath:vecmatlib:3.1'
```

## Questions and answers
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Project info
name := "VecMatLib"
homepage := Some(url("https://github.com/ScalaMath/VecMatLib"))
version := "3.0"
version := "3.1"
description := "A Scala library for vectors and matrix math"
// Organization info
organization := "io.github.scalamath"
Expand Down

0 comments on commit 40b144e

Please sign in to comment.