-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from teogor/docs/populate-content
Document 1.0.0-alpha01 Release Notes and Enhance Documentation Site
- Loading branch information
Showing
9 changed files
with
296 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,5 @@ gradle-app.setting | |
.project | ||
# JDT-specific (Eclipse Java Development Tools) | ||
.classpath | ||
|
||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
[//]: # (This file was automatically generated - do not edit) | ||
|
||
# Querent | ||
|
||
Querent is a versatile and intuitive Sudoku puzzle generation library written in Kotlin. It | ||
provides a comprehensive set of tools and algorithms for generating Sudoku puzzles of various grid | ||
sizes and difficulty levels. | ||
|
||
--- | ||
|
||
### API Reference | ||
|
||
* [`dev.teogor.querent`](../html/){:target="_blank"} | ||
* [`dev.teogor.querent:api`](../html/api){:target="_blank"} | ||
* [`dev.teogor.querent:gradle-plugin`](../html/gradle-plugin){:target="_blank"} | ||
|
||
### Release | ||
|
||
| Latest Update | Stable Release | Beta Release | Alpha Release | | ||
|:-----------------:|:--------------:|:------------:|:-------------:| | ||
| November 27, 2023 | - | - | 1.0.0-alpha01 | | ||
|
||
### Declaring dependencies | ||
|
||
To add a dependency on Querent, you must add the Maven repository to your project. | ||
Read [Maven's repository for more information](https://repo.maven.apache.org/maven2/). | ||
|
||
Add the dependencies for the artifacts you need in the `build.gradle` file for your app or module: | ||
|
||
=== "Kotlin" | ||
|
||
```kotlin | ||
plugins { | ||
id("dev.teogor.querent") version "1.0.0-alpha01" | ||
} | ||
|
||
repositories { | ||
mavenCentral() // Add the repository where the library is hosted | ||
} | ||
|
||
dependencies { | ||
implementation("dev.teogor.querent:querent-api:1.0.0-alpha01") | ||
} | ||
``` | ||
|
||
=== "Groovy" | ||
|
||
```groovy | ||
plugins { | ||
id 'dev.teogor.querent' version '1.0.0-alpha01' | ||
} | ||
|
||
repositories { | ||
mavenCentral() // Add the repository where the library is hosted | ||
} | ||
|
||
dependencies { | ||
implementation 'dev.teogor.querent:querent-api:1.0.0-alpha01' | ||
} | ||
``` | ||
|
||
### Feedback | ||
|
||
Your feedback helps make Querent better. We want to know if you discover new issues or have ideas | ||
for improving this library. Before creating a new issue, please take a look at | ||
the [existing ones](https://github.com/teogor/querent) in this library. You can add your vote to | ||
an | ||
existing issue by clicking the star button. | ||
|
||
[Create a new issue](https://github.com/teogor/querent/issues/new){ .md-button } | ||
|
||
### Version 1.0.0 | ||
|
||
#### Version 1.0.0-alpha01 | ||
|
||
November 27, 2023 | ||
|
||
`dev.teogor.querent:querent-*:1.0.0-alpha01` is | ||
released. [Version 1.0.0-alpha01 contains these commits.](https://github.com/teogor/querent/commits/1.0.0-alpha01) | ||
|
||
**Initial Release** 🎊 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[//]: # (This file was automatically generated - do not edit) | ||
|
||
# Version 1.0.0-alpha01 | ||
|
||
## Latest SDK versions | ||
|
||
| Status | Service or Product | Gradle dependency | Latest version | | ||
|:------:|:----------------------------------------------------------------------:|:------------------------------:|:--------------:| | ||
| 🧪 | [Querent Gradle Plugin](../../../html/gradle-plugin){:target="_blank"} | dev.teogor.querent | 1.0.0-alpha01 | | ||
| 🧪 | [Querent Gradle PLugin API](../../../html/api){:target="_blank"} | dev.teogor.querent:querent-api | 1.0.0-alpha01 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
[//]: # (This file was automatically generated - do not edit) | ||
|
||
## Implementation | ||
|
||
### Latest Version | ||
|
||
The latest release is [`1.0.0-alpha01`](../releases.md) | ||
|
||
### Releases | ||
|
||
Here's a summary of the latest versions: | ||
|
||
| Version | Release Notes | Release Date | | ||
|:-------------:|:------------------------------------------:|:------------:| | ||
| 1.0.0-alpha01 | [changelog 🔗](changelog/1.0.0-alpha01.md) | 27 Nov 2023 | | ||
|
||
### Using Version Catalog | ||
|
||
#### Declare Components | ||
|
||
This catalog provides the implementation details of Querent libraries, including and individual | ||
libraries, in TOML format. | ||
|
||
=== "Default" | ||
|
||
```toml title="gradle/libs.versions.toml" | ||
[versions] | ||
teogor-querent = "1.0.0-alpha01" | ||
|
||
[libraries] | ||
teogor-querent-api = { module = "dev.teogor.querent:querent-api", version.ref = "teogor-querent" } | ||
|
||
[plugins] | ||
teogor-querent = { id = "dev.teogor.querent", version.ref = "teogor-querent" } | ||
``` | ||
|
||
#### Dependencies Implementation | ||
|
||
=== "Kotlin" | ||
|
||
```kotlin title="build.gradle.kts" | ||
plugins { | ||
alias(libs.plugins.teogor.querent) | ||
} | ||
|
||
dependencies { | ||
// Option - Not Required | ||
implementation(libs.teogor.querent.api) | ||
} | ||
``` | ||
|
||
=== "Groovy" | ||
|
||
```groovy title="build.gradle" | ||
apply plugin: libs.plugins.teogor.querent | ||
|
||
dependencies { | ||
// Option - Not Required | ||
implementation libs.teogor.querent.api | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.