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