-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
329ae59
commit 87b6dab
Showing
1 changed file
with
24 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
The `chalk-engine` and `chalk-macros` crates are published to | ||
crates.io periodically for use by the compiler. The rest of chalk is | ||
not yet published, though it might be nice to publish the interpreter | ||
at some point. | ||
|
||
# Release 0.1.0 | ||
|
||
**Tag:** `chalk-engine-v0.1.0` | ||
|
||
Initial release. | ||
|
||
# Procedure to cut a release | ||
|
||
Should make a script or something, but: | ||
|
||
``` | ||
> // update version numbers | ||
> cd chalk-macros | ||
> cargo publish | ||
> cd ../chalk-ngine | ||
> cargo publish | ||
> git tag chalk-engine-vXXX | ||
``` | ||
|