Skip to content

Commit 76e602e

Browse files
nayyara-airlangganayyara-airlangga
andauthored
Bump version to 0.2.0 (#7)
* Update README.md * Update crate version in library documentation * Bump to 0.2.0 * Update CHANGELOG.md Co-authored-by: nayyara-airlangga <[email protected]>
1 parent 1d011d2 commit 76e602e

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
66

77
## [Unreleased]
88

9+
No changes have been made since the last release.
10+
11+
12+
## [v0.2.0] - 2022-07-30
13+
14+
Thanks to the following for their contributions:
15+
- [@nayyara-airlangga]
16+
917
### Added
1018
- Add code documentation ([#3](https://github.com/ristekoss/rust-sso-ui-jwt/pull/3)) ([@nayyara-airlangga])
1119
- Create SSO user struct ([#4](https://github.com/ristekoss/rust-sso-ui-jwt/pull/4)) ([@nayyara-airlangga])
@@ -40,7 +48,8 @@ Thanks to the following for their contributions:
4048
[contributing.md]: https://github.com/ristekoss/rust-sso-ui-jwt/tree/main/CONTRIBUTING.md
4149

4250
<!-- VERSION COMPARISON -->
43-
[Unreleased]: https://github.com/ristekoss/rust-sso-ui-jwt/compare/v0.1.1...HEAD
51+
[Unreleased]: https://github.com/ristekoss/rust-sso-ui-jwt/compare/v0.2.0...HEAD
52+
[v0.2.0]: https://github.com/ristekoss/rust-sso-ui-jwt/compare/v0.1.1...v0.2.0
4453
[v0.1.1]: https://github.com/ristekoss/rust-sso-ui-jwt/compare/v0.1.0...v0.1.1
4554
[v0.1.0]: https://github.com/ristekoss/rust-sso-ui-jwt/tree/v0.1.0
4655

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "sso-ui-jwt"
33
description = "Rust library for JWT utilities from SSO UI"
4-
version = "0.1.1"
4+
version = "0.2.0"
55
edition = "2021"
66
keywords = ["sso", "jwt", "ristekoss", "ristekcsui", "universitasindonesia"]
77
authors = ["RISTEK Open Source <[email protected]>"]

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ That's why we decided to make this library.
1313
It parses the response data into a JSON format and we provide
1414
the SSO ticket validation mechanism as well as JWT utilities for the data.
1515

16+
## Documentation
17+
18+
You can view the project's documentation in it's [docs.rs](https://docs.rs/sso-ui-jwt/latest/sso_ui_jwt) website.
19+
1620
## Usage
1721

1822
See the [examples](https://github.com/ristekoss/rust-sso-ui-jwt/tree/main/examples) for reference on using this library.
@@ -23,7 +27,7 @@ Add this to your `Cargo.toml` file:
2327

2428
```toml
2529
[dependencies]
26-
sso-ui-jwt = "0.1"
30+
sso-ui-jwt = "0.2"
2731
```
2832

2933
## Features
@@ -32,7 +36,7 @@ Enabling or disabling features can be done by configuring the library from `Carg
3236

3337
```toml
3438
[dependencies.sso-ui-jwt]
35-
version = "0.1"
39+
version = "0.2"
3640
features = ["log"]
3741
```
3842

@@ -42,6 +46,10 @@ Full list of features:
4246

4347
- **`log`**: Logs the messages within the library
4448

49+
## Contributing
50+
51+
If you'd like to contribute to this project, please read our [contributing guidelines](https://github.com/ristekoss/rust-sso-ui-jwt/tree/main/CONTRIBUTING.md) **before creating pull requsts**.
52+
4553
## Maintainers
4654

4755
This project is currently maintained by the following members of RISTEKOSS:

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
//!
2222
//! ```toml
2323
//! [dependencies]
24-
//! sso-ui-jwt = "0.1"
24+
//! sso-ui-jwt = "0.2"
2525
//! ```
2626
//!
2727
//! # Features
@@ -30,7 +30,7 @@
3030
//!
3131
//! ```toml
3232
//! [dependencies.sso-ui-jwt]
33-
//! version = "0.1"
33+
//! version = "0.2"
3434
//! features = ["log"]
3535
//! ```
3636
//!

src/orgs/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub struct Organization {
2929
/// # Examples
3030
///
3131
/// ```rust
32-
/// use sso_ui_jwt::orgs::{get_organizations, Organization};
32+
/// use sso_ui_jwt::orgs::get_organizations;
3333
///
3434
/// let orgs = get_organizations();
3535
/// let org = orgs.get("01.00.12.01").unwrap();

0 commit comments

Comments
 (0)