iScsc / iscsc.fr

The iScsc website, build with passion by wannabe devs 🔥
GNU General Public License v3.0
4 stars 12 forks source link

Bump to version 0.1.0 #19

Closed ctmbl closed 2 years ago

ctmbl commented 2 years ago

here is a PR for the first official version bump of the website.

Some questions must be address:

The wiki will have be updated after this discussion Right after this merging we will tag the commit with v0.1.0

HURRY UP this PR must be resolved before any other (especially #17) you have my point of view please give yours @atxr @amtoine

atxr commented 2 years ago

The second method you propose is definitely the good one for long term. I think soon the backend and frontend development will be separated (for the best) We should still be able to track the version of each one and release a global version for the website when needed. So it's ok for me! Just I think you forgot to add the version in frontend/package.json

atxr commented 2 years ago

Did you manage to find some documentation on removing an existing tag?

amtoine commented 2 years ago

you should be able to simply

git tag --delete v0.0.1
git checkout 31e96b3
git tag v0.1.0 -m "blah blah"
git push --tags --prune

:+1:

amtoine commented 2 years ago

What about frontend/package.json ?

in nushell, i get

nushell> [. frontend backend] | each {
|it|
open $"($it)/package.json" | get version
}
╭───┬───────╮
│ 0 │ 0.1.0 │
│ 1 │ 0.1.0 │
│ 2 │ 0.1.0 │
╰───┴───────╯

is there anything to do in frontend/package.json? :thinking: