From 03ffa276194138494a5c1a1d85731e8881f43c70 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:33:01 -0700 Subject: [PATCH 01/27] pascals-triangle: declare compliance with x-common 1.0.0 We only test the last row of the 4 case, but that was intentional, it seems. We do not test the negative (since we use a u32 as input) nor nil (since we use a u32 as input). --- exercises/pascals-triangle/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/pascals-triangle/Cargo.toml b/exercises/pascals-triangle/Cargo.toml index a47fd7d5c..d989d0c71 100644 --- a/exercises/pascals-triangle/Cargo.toml +++ b/exercises/pascals-triangle/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "pascals-triangle" -version = "0.0.0" +version = "1.0.0" From b2687fc156ccfdb4bb2c373c26206f1e965b9b82 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:34:00 -0700 Subject: [PATCH 02/27] acronym: declare compliance with x-common 1.0.0 --- exercises/acronym/Cargo.lock | 2 +- exercises/acronym/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/acronym/Cargo.lock b/exercises/acronym/Cargo.lock index be098d9c9..8d844ae0b 100644 --- a/exercises/acronym/Cargo.lock +++ b/exercises/acronym/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "acronym" -version = "0.1.0" +version = "1.0.0" diff --git a/exercises/acronym/Cargo.toml b/exercises/acronym/Cargo.toml index e29ae8906..3422b3dfb 100644 --- a/exercises/acronym/Cargo.toml +++ b/exercises/acronym/Cargo.toml @@ -1,5 +1,5 @@ [package] name = "acronym" -version = "0.1.0" +version = "1.0.0" [dependencies] From fa72ffca3807272097ed5c510cea67041e18357a Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:34:10 -0700 Subject: [PATCH 03/27] bracket-push: declare compliance with x-common 1.0.0 Note that we are not yet in compliance with 1.1.0 --- exercises/bracket-push/Cargo.lock | 2 +- exercises/bracket-push/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/bracket-push/Cargo.lock b/exercises/bracket-push/Cargo.lock index 11412f139..c0770b06b 100644 --- a/exercises/bracket-push/Cargo.lock +++ b/exercises/bracket-push/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "bracket-push" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/bracket-push/Cargo.toml b/exercises/bracket-push/Cargo.toml index 198b1bdab..67e08f600 100644 --- a/exercises/bracket-push/Cargo.toml +++ b/exercises/bracket-push/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "bracket-push" -version = "0.0.0" +version = "1.0.0" From 9852f716ab9854af110a2fe63e8c40cb3814757b Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:37:19 -0700 Subject: [PATCH 04/27] all-your-base: declare compliance with x-common 1.0.0 We do not test negatives since we use unsigned integers as inputs. --- exercises/all-your-base/Cargo.lock | 2 +- exercises/all-your-base/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/all-your-base/Cargo.lock b/exercises/all-your-base/Cargo.lock index 92cc4a2ba..756cad7a8 100644 --- a/exercises/all-your-base/Cargo.lock +++ b/exercises/all-your-base/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "allyourbase" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/all-your-base/Cargo.toml b/exercises/all-your-base/Cargo.toml index 158e71215..bd2692b2e 100644 --- a/exercises/all-your-base/Cargo.toml +++ b/exercises/all-your-base/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "allyourbase" -version = "0.0.0" +version = "1.0.0" From 06635d62d39ce1984bfadf25132b7cacd9130e90 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:39:33 -0700 Subject: [PATCH 05/27] wordy: declare compliance with x-common 1.0.0 --- exercises/wordy/Cargo.lock | 2 +- exercises/wordy/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/wordy/Cargo.lock b/exercises/wordy/Cargo.lock index c39ed516c..c4279ed12 100644 --- a/exercises/wordy/Cargo.lock +++ b/exercises/wordy/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "wordy" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/wordy/Cargo.toml b/exercises/wordy/Cargo.toml index 265675076..bd123f520 100644 --- a/exercises/wordy/Cargo.toml +++ b/exercises/wordy/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "wordy" -version = "0.0.0" +version = "1.0.0" From 9e32da61abdf2f6a473613e5f3dc9a9d7a592c6a Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:40:39 -0700 Subject: [PATCH 06/27] gigasecond: declare compliance with x-common 1.0.0 --- exercises/gigasecond/Cargo.lock | 2 +- exercises/gigasecond/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/gigasecond/Cargo.lock b/exercises/gigasecond/Cargo.lock index 082c59411..13dd0c566 100644 --- a/exercises/gigasecond/Cargo.lock +++ b/exercises/gigasecond/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "gigasecond" -version = "0.0.0" +version = "1.0.0" dependencies = [ "chrono 0.2.19 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/exercises/gigasecond/Cargo.toml b/exercises/gigasecond/Cargo.toml index 6d27d9c68..853033292 100644 --- a/exercises/gigasecond/Cargo.toml +++ b/exercises/gigasecond/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gigasecond" -version = "0.0.0" +version = "1.0.0" [dependencies] chrono = "0.2" From 265c7f40e8647fee239876f899cb596db09ea130 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:42:05 -0700 Subject: [PATCH 07/27] scrabble-score: declare compliance with x-common 1.0.0 --- exercises/scrabble-score/Cargo.lock | 2 +- exercises/scrabble-score/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/scrabble-score/Cargo.lock b/exercises/scrabble-score/Cargo.lock index f78bd5d2c..36b5d1097 100644 --- a/exercises/scrabble-score/Cargo.lock +++ b/exercises/scrabble-score/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "scrabble-score" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/scrabble-score/Cargo.toml b/exercises/scrabble-score/Cargo.toml index 2befd6321..7f087b596 100644 --- a/exercises/scrabble-score/Cargo.toml +++ b/exercises/scrabble-score/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "scrabble-score" -version = "0.0.0" +version = "1.0.0" From 94a834ef40982d21d3cfc45085d822f6e5c34eab Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:48:11 -0700 Subject: [PATCH 08/27] dominoes: declare compliance with x-common 1.0.0 --- exercises/dominoes/Cargo.lock | 2 +- exercises/dominoes/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/dominoes/Cargo.lock b/exercises/dominoes/Cargo.lock index b7908e9b2..2e6d5363f 100644 --- a/exercises/dominoes/Cargo.lock +++ b/exercises/dominoes/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "dominoes" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/dominoes/Cargo.toml b/exercises/dominoes/Cargo.toml index c7189a6b8..9a4f0d72f 100644 --- a/exercises/dominoes/Cargo.toml +++ b/exercises/dominoes/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "dominoes" -version = "0.0.0" +version = "1.0.0" From bbb070efead22b353ec250735c189d23c14d3f39 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:50:59 -0700 Subject: [PATCH 09/27] run-length-encoding: declare compliance with x-common 1.0.0 --- exercises/run-length-encoding/Cargo.lock | 2 +- exercises/run-length-encoding/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/run-length-encoding/Cargo.lock b/exercises/run-length-encoding/Cargo.lock index 8114c0f53..98d629db4 100644 --- a/exercises/run-length-encoding/Cargo.lock +++ b/exercises/run-length-encoding/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "run-length-encoding" -version = "0.1.0" +version = "1.0.0" diff --git a/exercises/run-length-encoding/Cargo.toml b/exercises/run-length-encoding/Cargo.toml index 3444428ac..a9c621f3b 100644 --- a/exercises/run-length-encoding/Cargo.toml +++ b/exercises/run-length-encoding/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "run-length-encoding" -version = "0.1.0" +version = "1.0.0" authors = ["zombiefungus "] [dependencies] From 958a088f57bea5b6e083425139c416d68ac4e82e Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:54:19 -0700 Subject: [PATCH 10/27] custom-set: declare compliance with x-common 1.0.1 --- exercises/custom-set/Cargo.lock | 2 +- exercises/custom-set/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/custom-set/Cargo.lock b/exercises/custom-set/Cargo.lock index 3cf864f38..cc3726acd 100644 --- a/exercises/custom-set/Cargo.lock +++ b/exercises/custom-set/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "custom-set" -version = "0.0.0" +version = "1.0.1" diff --git a/exercises/custom-set/Cargo.toml b/exercises/custom-set/Cargo.toml index 32d692361..1cc4ef159 100644 --- a/exercises/custom-set/Cargo.toml +++ b/exercises/custom-set/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "custom-set" -version = "0.0.0" +version = "1.0.1" From fbee5fdc265505a67831ece94f314411e9999571 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:56:00 -0700 Subject: [PATCH 11/27] space-age: declare compliance with x-common 1.0.0 --- exercises/space-age/Cargo.lock | 2 +- exercises/space-age/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/space-age/Cargo.lock b/exercises/space-age/Cargo.lock index db1f72d3e..020d1ff5b 100644 --- a/exercises/space-age/Cargo.lock +++ b/exercises/space-age/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "space-age" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/space-age/Cargo.toml b/exercises/space-age/Cargo.toml index f39f06650..3971530d2 100644 --- a/exercises/space-age/Cargo.toml +++ b/exercises/space-age/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "space-age" -version = "0.0.0" +version = "1.0.0" From f994e33d65a531b733bafd34989d70aafd5b5faf Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 14:58:18 -0700 Subject: [PATCH 12/27] robot-simulator: declare compliance with x-common 1.0.0 --- exercises/robot-simulator/Cargo.lock | 2 +- exercises/robot-simulator/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/robot-simulator/Cargo.lock b/exercises/robot-simulator/Cargo.lock index 05f6c5b20..97e9d559a 100644 --- a/exercises/robot-simulator/Cargo.lock +++ b/exercises/robot-simulator/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "robot-simulator" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/robot-simulator/Cargo.toml b/exercises/robot-simulator/Cargo.toml index af4017bd7..63961c151 100644 --- a/exercises/robot-simulator/Cargo.toml +++ b/exercises/robot-simulator/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "robot-simulator" -version = "0.0.0" +version = "1.0.0" From de0f787f927938bbc45fa8d50a190812c57f3741 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:01:43 -0700 Subject: [PATCH 13/27] queen-attack: declare compliance with x-common 1.0.0 Some values are different, but all cases are still being tested. --- exercises/queen-attack/Cargo.lock | 2 +- exercises/queen-attack/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/queen-attack/Cargo.lock b/exercises/queen-attack/Cargo.lock index 5ce25b95d..23b7a71c9 100644 --- a/exercises/queen-attack/Cargo.lock +++ b/exercises/queen-attack/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "queen-attack" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/queen-attack/Cargo.toml b/exercises/queen-attack/Cargo.toml index ac694c4cc..c1c9b6e78 100644 --- a/exercises/queen-attack/Cargo.toml +++ b/exercises/queen-attack/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "queen-attack" -version = "0.0.0" +version = "1.0.0" From 5c3e6329fb393a96f82623d58b638e7dc0e8d6ef Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:04:13 -0700 Subject: [PATCH 14/27] allergies: declare compliance with x-common 1.0.0 --- exercises/allergies/Cargo.lock | 2 +- exercises/allergies/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/allergies/Cargo.lock b/exercises/allergies/Cargo.lock index 90e76744d..fd80596cb 100644 --- a/exercises/allergies/Cargo.lock +++ b/exercises/allergies/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "allergies" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/allergies/Cargo.toml b/exercises/allergies/Cargo.toml index 48da13e87..111294690 100644 --- a/exercises/allergies/Cargo.toml +++ b/exercises/allergies/Cargo.toml @@ -1,4 +1,4 @@ [package] name = "allergies" -version = "0.0.0" +version = "1.0.0" From 5504eb3627b7638a0b8b81845ad03a920e381441 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:05:56 -0700 Subject: [PATCH 15/27] sum-of-multiples: declare compliance with x-common 1.0.0 --- exercises/sum-of-multiples/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/sum-of-multiples/Cargo.toml b/exercises/sum-of-multiples/Cargo.toml index a362da026..b44a94613 100644 --- a/exercises/sum-of-multiples/Cargo.toml +++ b/exercises/sum-of-multiples/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "sum-of-multiples" -version = "0.0.0" +version = "1.0.0" From b36783fb33065df4a650a4ec60b7259fbbb00329 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:08:19 -0700 Subject: [PATCH 16/27] atbash-cipher: declare compliance with x-common 1.0.0 --- exercises/atbash-cipher/Cargo.lock | 2 +- exercises/atbash-cipher/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/atbash-cipher/Cargo.lock b/exercises/atbash-cipher/Cargo.lock index b97daa29c..797f5b4d4 100644 --- a/exercises/atbash-cipher/Cargo.lock +++ b/exercises/atbash-cipher/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "atbash-cipher" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/atbash-cipher/Cargo.toml b/exercises/atbash-cipher/Cargo.toml index ac15cd8c2..1d37d7577 100644 --- a/exercises/atbash-cipher/Cargo.toml +++ b/exercises/atbash-cipher/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "atbash-cipher" -version = "0.0.0" +version = "1.0.0" From ac4565ec3502693878fa7aa0a685b237282f9fd6 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:13:01 -0700 Subject: [PATCH 17/27] largest-series-product: declare compliance with x-common 1.0.0 --- exercises/largest-series-product/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/largest-series-product/Cargo.toml b/exercises/largest-series-product/Cargo.toml index d13ea91ce..c5a0c7445 100644 --- a/exercises/largest-series-product/Cargo.toml +++ b/exercises/largest-series-product/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "largest-series-product" -version = "0.0.0" +version = "1.0.0" From a9b4181cf15e5b9d82b018492dba20de167574b2 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:13:59 -0700 Subject: [PATCH 18/27] grains: declare compliance with x-common 1.0.0 We don't test the negative case because we use u32 as input. --- exercises/grains/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/grains/Cargo.toml b/exercises/grains/Cargo.toml index ea865db68..fa78aa6ec 100644 --- a/exercises/grains/Cargo.toml +++ b/exercises/grains/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "grains" -version = "0.0.0" +version = "1.0.0" From d594d5ce421e1b83e1da9d9e7a0dd6e4a534e0fa Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:18:03 -0700 Subject: [PATCH 19/27] sieve: declare compliance with x-common 1.0.0 --- exercises/sieve/Cargo.lock | 2 +- exercises/sieve/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/sieve/Cargo.lock b/exercises/sieve/Cargo.lock index 51f2f38d0..1cdb19022 100644 --- a/exercises/sieve/Cargo.lock +++ b/exercises/sieve/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "sieve" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/sieve/Cargo.toml b/exercises/sieve/Cargo.toml index 4891a26d5..5720de3f4 100644 --- a/exercises/sieve/Cargo.toml +++ b/exercises/sieve/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "sieve" -version = "0.0.0" +version = "1.0.0" From 2e40fcb176bf26ec21b361671a5cc3d4951934b0 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:19:23 -0700 Subject: [PATCH 20/27] rotational-cipher: declare compliance with x-common 1.0.0 --- exercises/rotational-cipher/Cargo.lock | 2 +- exercises/rotational-cipher/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/rotational-cipher/Cargo.lock b/exercises/rotational-cipher/Cargo.lock index ec5b46daa..0cb184142 100644 --- a/exercises/rotational-cipher/Cargo.lock +++ b/exercises/rotational-cipher/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "rotational-cipher" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/rotational-cipher/Cargo.toml b/exercises/rotational-cipher/Cargo.toml index 51f3d3a6a..5e9219749 100644 --- a/exercises/rotational-cipher/Cargo.toml +++ b/exercises/rotational-cipher/Cargo.toml @@ -1,4 +1,4 @@ [package] name = "rotational-cipher" -version = "0.0.0" +version = "1.0.0" authors = ["Chad Baxter "] From 3c3b6ad69c69004a471cb59114af49b5eb89313a Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:22:10 -0700 Subject: [PATCH 21/27] react: declare compliance with x-common 1.0.0 Rust has a few track-specific tests in addition. --- exercises/react/Cargo.lock | 2 +- exercises/react/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/react/Cargo.lock b/exercises/react/Cargo.lock index ac579264f..7304c8767 100644 --- a/exercises/react/Cargo.lock +++ b/exercises/react/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "react" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/react/Cargo.toml b/exercises/react/Cargo.toml index b6dae4439..6b8bb9cb7 100644 --- a/exercises/react/Cargo.toml +++ b/exercises/react/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "react" -version = "0.0.0" +version = "1.0.0" From 091353d803b64c61a666ee1ec5125623133b1dae Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:23:27 -0700 Subject: [PATCH 22/27] roman-numerals: declare compliance with x-common 1.0.0 Although our descriptions aren't quite as good. --- exercises/roman-numerals/Cargo.lock | 2 +- exercises/roman-numerals/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/roman-numerals/Cargo.lock b/exercises/roman-numerals/Cargo.lock index 61b361b7e..92fe942bb 100644 --- a/exercises/roman-numerals/Cargo.lock +++ b/exercises/roman-numerals/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "roman-numerals" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/roman-numerals/Cargo.toml b/exercises/roman-numerals/Cargo.toml index 0f25967ca..6ae5e099d 100644 --- a/exercises/roman-numerals/Cargo.toml +++ b/exercises/roman-numerals/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "roman-numerals" -version = "0.0.0" +version = "1.0.0" From 1ff7b4fde6d688921c36d45c46e029a19c1868e7 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:24:22 -0700 Subject: [PATCH 23/27] leap: declare compliance with x-common 1.0.0 Our values are different and our descriptions don't explain everything, but the same cases are being covered. --- exercises/leap/Cargo.lock | 2 +- exercises/leap/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/leap/Cargo.lock b/exercises/leap/Cargo.lock index 015af9819..0c686700c 100644 --- a/exercises/leap/Cargo.lock +++ b/exercises/leap/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "leap" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/leap/Cargo.toml b/exercises/leap/Cargo.toml index e9ad1e39a..7d5ff2574 100644 --- a/exercises/leap/Cargo.toml +++ b/exercises/leap/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "leap" -version = "0.0.0" +version = "1.0.0" From 5a7edd3641119a6563f00cb936db13d2cd36ed69 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:25:17 -0700 Subject: [PATCH 24/27] hello-world: declare compliance with x-common 1.0.0 --- exercises/hello-world/Cargo.lock | 2 +- exercises/hello-world/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/hello-world/Cargo.lock b/exercises/hello-world/Cargo.lock index ca4e4e2cb..90626ca4c 100644 --- a/exercises/hello-world/Cargo.lock +++ b/exercises/hello-world/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "hello-world" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/hello-world/Cargo.toml b/exercises/hello-world/Cargo.toml index 375da45b6..94058064e 100644 --- a/exercises/hello-world/Cargo.toml +++ b/exercises/hello-world/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "hello-world" -version = "0.0.0" +version = "1.0.0" From 4755fb785499e17e76f6a907277cc36f99a93240 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:29:26 -0700 Subject: [PATCH 25/27] variable-length-quantity: declare compliance with x-common 1.0.0 We have an extra test of overflowing u32, and also a (rather useless) test that `decode . encode` is identity. --- exercises/variable-length-quantity/Cargo.lock | 2 +- exercises/variable-length-quantity/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/variable-length-quantity/Cargo.lock b/exercises/variable-length-quantity/Cargo.lock index 87ae648d9..167a83fdf 100644 --- a/exercises/variable-length-quantity/Cargo.lock +++ b/exercises/variable-length-quantity/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "variable-length-quantity" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/variable-length-quantity/Cargo.toml b/exercises/variable-length-quantity/Cargo.toml index e5a2a73bc..0edb6aeaf 100644 --- a/exercises/variable-length-quantity/Cargo.toml +++ b/exercises/variable-length-quantity/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "variable-length-quantity" -version = "0.0.0" +version = "1.0.0" From 2167b7801ab49a4e895314fb0cf0ea8d90265274 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:34:43 -0700 Subject: [PATCH 26/27] bowling: declare compliance with x-common 1.0.0 Our tests are in slightly different orders, but they are all there. Only exception is the negative roll since we want to allow the student to use unsigned integer to avoid it. --- exercises/bowling/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/bowling/Cargo.toml b/exercises/bowling/Cargo.toml index 0964c18d9..37fd6f1cc 100644 --- a/exercises/bowling/Cargo.toml +++ b/exercises/bowling/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "bowling" -version = "0.0.0" +version = "1.0.0" From 0522139293aa781ca48e85effdc0c352ac7cacc0 Mon Sep 17 00:00:00 2001 From: Peter Tseng Date: Sun, 7 May 2017 15:36:38 -0700 Subject: [PATCH 27/27] alphametics: declare compliance with x-common 1.0.0 --- exercises/alphametics/Cargo.lock | 2 +- exercises/alphametics/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/alphametics/Cargo.lock b/exercises/alphametics/Cargo.lock index 2dea6a4ac..f14aa3c94 100644 --- a/exercises/alphametics/Cargo.lock +++ b/exercises/alphametics/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "alphametics" -version = "0.0.0" +version = "1.0.0" diff --git a/exercises/alphametics/Cargo.toml b/exercises/alphametics/Cargo.toml index 820638315..5850a565b 100644 --- a/exercises/alphametics/Cargo.toml +++ b/exercises/alphametics/Cargo.toml @@ -1,3 +1,3 @@ [package] name = "alphametics" -version = "0.0.0" +version = "1.0.0"