Good morning everyone!
I'm developing a simple website for the purpose of front end study and I came across a question regarding Bower, a tool I'm using to manage the dependencies, which I could not properly repair by reading the documentation.
I have the following bower.json:
{
"name": "my-project",
"dependencies": {
"highcharts": "-3.0.10",
"jquery": "^1.20"
}
}
My question is regarding the '-' and '^' symbols that come before the version number. Reading the documentation is still not very clear to me.
Thank you.