-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2: Release version 0.1.0 r=jix a=jix Co-authored-by: Jannis Harder <[email protected]>
- Loading branch information
Showing
3 changed files
with
5 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,4 @@ if [ ! -z ${CIRCLECI+x} ]; then | |
# Git needs a user/email to commit under | ||
git config --global user.name "CI Deploy" | ||
git config --global user.email "[email protected]" | ||
|
||
# We setup our ssh push key | ||
echo "$SSH_PRIVKEY" | base64 -d > ~/.ssh/id_ed25519 | ||
echo "$SSH_PUBKEY" > ~/.ssh/id_ed25519.pub | ||
chmod -R go= ~/.ssh | ||
fi |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vec_mut_scan" | ||
version = "0.0.0" | ||
version = "0.1.0" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
edition = "2018" | ||
description = "Forward scan over a vector with mutation and item removal" | ||
|