Skip to content

Commit

Permalink
[stability GitoxideLabs#171] Prime git-tempfile and git-lock for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 25, 2021
1 parent 32caae1 commit 01278fe
Show file tree
Hide file tree
Showing 14 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE-APACHE
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@

END OF TERMS AND CONDITIONS

Copyright 2020 Sebastian Thiel
Copyright 2018-2021 Sebastian Thiel, and [contributors](https://github.com/byron/gitoxide/contributors)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018-2020 Sebastian Thiel, and [others](https://github.com/byron/gitoxide/contributors).
Copyright (c) 2018-2021 Sebastian Thiel, and [contributors](https://github.com/byron/gitoxide/contributors).

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ Please see _'Development Status'_ for a listing of all crates and their capabili

Follow linked crate name for detailed status. Please note that all crates follow [semver] as well as the [stability guide].

* **primed for 1.0 releaes**
- [git-tempfile](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-tempfile)
- [git-lock](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-lock)

* **usable**
* [git-actor](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-actor)
* [git-hash](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-hash)
Expand All @@ -66,8 +70,6 @@ Follow linked crate name for detailed status. Please note that all crates follow
* [git-traverse](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-traverse)
* [git-config](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-config)
* [git-features](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-features)
* [git-tempfile](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-tempfile)
* [git-lock](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-lock)
* [git-ref](https://github.com/Byron/gitoxide/blob/main/crate-status.md#git-ref)
* `gitoxide-core`
* **very early**
Expand Down
4 changes: 2 additions & 2 deletions etc/check-package-size.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ echo "in root: gitoxide CLI"
indent cargo diet -n --package-size-limit 25KB
(enter cargo-smart-release && indent cargo diet -n --package-size-limit 15KB)
(enter git-actor && indent cargo diet -n --package-size-limit 5KB)
(enter git-tempfile && indent cargo diet -n --package-size-limit 12KB)
(enter git-lock && indent cargo diet -n --package-size-limit 7KB)
(enter git-tempfile && indent cargo diet -n --package-size-limit 20KB)
(enter git-lock && indent cargo diet -n --package-size-limit 15KB)
(enter git-config && indent cargo diet -n --package-size-limit 55KB)
(enter git-hash && indent cargo diet -n --package-size-limit 5KB)
(enter git-features && indent cargo diet -n --package-size-limit 20KB)
Expand Down
3 changes: 3 additions & 0 deletions git-lock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### 1.0 (2021-MM-DD)

- initial release
2 changes: 1 addition & 1 deletion git-lock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
description = "A git-style lock-file implementation"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2018"
include = ["src/**/*"]
include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"]

[lib]
doctest = false
Expand Down
1 change: 1 addition & 0 deletions git-lock/LICENSE-APACHE
1 change: 1 addition & 0 deletions git-lock/LICENSE-MIT
2 changes: 1 addition & 1 deletion git-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
description = "A WIP crate of the gitoxide project for implementing git protocols"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2018"
include = ["src/**/*"]
include = ["src/**/*", "CHANGELOG.md", "!**/tests/**/*"]

[lib]
doctest = false
Expand Down
2 changes: 1 addition & 1 deletion git-repository/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
version = "0.7.2"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2018"
include = ["src/**/*", "src/assets/**"]
include = ["src/**/*", "CHANGELOG.md"]

[lib]
doctest = false
Expand Down
3 changes: 3 additions & 0 deletions git-tempfile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### 1.0 (2021-MM-DD)

- initial release
2 changes: 1 addition & 1 deletion git-tempfile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0"
description = "A tempfile implementation with a global registry to assure cleanup"
authors = ["Sebastian Thiel <[email protected]>"]
edition = "2018"
include = ["src/**/*"]
include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"]

[lib]
doctest = false
Expand Down
1 change: 1 addition & 0 deletions git-tempfile/LICENSE-APACHE
1 change: 1 addition & 0 deletions git-tempfile/LICENSE-MIT

0 comments on commit 01278fe

Please sign in to comment.