-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release agda2hs 1.1 #203
Comments
I've created a release candidate which you can find here: https://hackage.haskell.org/package/agda2hs-1.0.20231012/candidate @jmchapman @omelkonian @flupe @sarajuhosova @wcqaguxa @viktorcsimma and anyone else: If you have the time, could you give it a try to make sure it works okay for you? |
I've also created a tag for the RC here: https://github.com/agda/agda2hs/tree/v1.0.20231012 |
Oh and before someone asks for a changelog, you can take a look at https://github.com/agda/agda2hs/issues?q=milestone%3A1.1 for now :) |
Looking at the previous version 1.0 on Hackage, it seems the Haddock is missing, so make sure you upload the documentation (i.e. PACKAGE=agda2hs
curVersion=$(grep "^version" $PACKAGE.cabal | cut -d: -f2 | tr -d "[:blank:]")
prevVersion=$(git show HEAD^:$PACKAGE.cabal | grep "^version" | cut -d: -f2 | tr -d "[:blank:]")
if [[ $curVersion != $prevVersion ]]; then
echo "Version has changed, publishing to Hackage."
cabal new-sdist
cabal upload -u $HACKAGE_USERNAME -p $HACKAGE_PASSWORD \
--publish dist-newstyle/sdist/$PACKAGE-$curVersion.tar.gz
cabal upload -u $HACKAGE_USERNAME -p $HACKAGE_PASSWORD \
--publish -d dist-newstyle/$PACKAGE-$curVersion-docs.tar.gz
else
echo "Version has not changed, not publishing to Hackage."
fi |
There are some braking changes for the tutorial files, I updated them accordingly: #206 |
I think the version numbers in the Emacs mode remained 2.6.3 and Emacs complains about this. I'll fix that soon. |
Huh; there seems to be a bigger problem... do you have any ideas? See issue #208. |
agda2hs 1.1 has been released: https://hackage.haskell.org/package/agda2hs-1.1 |
Agda 2.6.4 has been released, so ideally we should release a compatible version of agda2hs soon. Before we do that I still want to look at the currently open bugs (#185 and #201) and fix them if possible.
The text was updated successfully, but these errors were encountered: