Laszlo Toth

Results 28 comments of Laszlo Toth

Unfortunately I have not noticed in relapp.appup.src the first two lines: ``` AppInfo = rebar3_appup_utils:find_app_info(, STATE), "{{vsn}}" = rebar_app_info:original_vsn(AppInfo), ``` With those two lines added to our .appup.src the correct...

I've pushed some commits to my local repo containing the needed changes to reproduce the same problem. So basically if the project is not umbrella, and the first lines setting...

Thanks for the quick reply! I will let you know when I will be able to merge it into the plugin.

Hi. Is there an update on this problem? We were trying to find a solution using tags consisting of only 3 numbers but unfortunately it wont solve our problem. We...

No, unfortunately using a tag like 0.1.0+build1 is not possible. Using rebar3 3.22.1 it fails with ``` ===> Upfrom release version (0.1.0+build1) for relup not found ``` even though the...

``` tothlac:oyhveyh rebar3 --version rebar 3.22.1 on Erlang/OTP 26 Erts 14.2.1 ```

I've pushed a repository here, where it does not work: https://github.com/tothlac/oyhveyh/ I've used this script to reproduce the error: ```bash tothlac:oyhveyh cat ~/work/upgr.sh #!/bin/bash set -ex APP=$1 BASE=$2 TARGET=$3 printf...

Actually either tags containing four numbers (4.2.1.10) or three numbers + something at the end like 4.2.1+build1 would be good for us. Unfortunately 3 numbers is not enough for us,...

I got this: ```bash tothlac:oyhveyh ../upgr.sh oyhveyh 0.1.0 0.1.0-build1 + APP=oyhveyh + BASE=0.1.0 + TARGET=0.1.0-build1 + printf 'Upgrade on %s between versions %s ==> %s\n' oyhveyh 0.1.0 0.1.0-build1 Upgrade on...

Do you have any updates on this?