From 5fafde8fd9204cad125aa3f92de6462f517ea9bd Mon Sep 17 00:00:00 2001 From: Thibaut Mattio Date: Tue, 2 Nov 2021 15:05:14 +0100 Subject: [PATCH] Prepare release 0.1.1 --- .gitattributes | 3 --- .spin | 13 ------------- CHANGES.md | 6 ++++++ dune | 4 ---- script/release.sh | 25 ------------------------- 5 files changed, 6 insertions(+), 45 deletions(-) delete mode 100644 .spin delete mode 100644 dune delete mode 100755 script/release.sh diff --git a/.gitattributes b/.gitattributes index 66d3138..097f9ce 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,9 +2,6 @@ *.ml linguist-language=OCaml *.mli linguist-language=OCaml -# Disable syntax detection for .spin -.spin linguist-language=Text - # Declare shell files to have LF endings on checkout # On Windows, the default git setting for `core.autocrlf` # means that when checking out code, LF endings get converted diff --git a/.spin b/.spin deleted file mode 100644 index d6085fc..0000000 --- a/.spin +++ /dev/null @@ -1,13 +0,0 @@ -(source (official cli)) -(config username "Thibaut Mattio") -(config project_name "OCaml Migrate") -(config email thibaut.mattio@gmail.com) -(config npm_username tmattio) -(config github_username tmattio) -(config project_description "Database migrations for Reason and OCaml") -(config package_manager Opam) -(config ci_cd Github) -(config syntax OCaml) -(config project_snake omigrate) -(config project_slug omigrate) -(config test_framework Alcotest) diff --git a/CHANGES.md b/CHANGES.md index ce017f3..a017998 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# 0.1.1 - 2021-11-02 + +## Fixed + +- Use 1-indexed month number in migration names (#1, @punchagan) + # 0.1.0 - 2020-05-24 ## Added diff --git a/dune b/dune deleted file mode 100644 index cb66dfe..0000000 --- a/dune +++ /dev/null @@ -1,4 +0,0 @@ -(env - (dev - (flags - (:standard -open StdLabels -w +A-48-42-44 -warn-error +A-3)))) diff --git a/script/release.sh b/script/release.sh deleted file mode 100755 index a562104..0000000 --- a/script/release.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -set -e - -if [ -d ".git" ]; then - changes=$(git status --porcelain) - branch=$(git rev-parse --abbrev-ref HEAD) - - if [ -n "${changes}" ]; then - echo "Please commit staged files prior to bumping" - exit 1 - elif [ "${branch}" != "master" ]; then - echo "Please run the release script on master" - exit 1 - else - dune-release tag - dune-release distrib - dune-release publish distrib -y - dune-release opam pkg - dune-release opam submit --no-auto-open -y - fi -else - echo "This project is not a git repository. Run `git init` first to be able to release." - exit 1 -fi