version 1.0.0 copy "version: ^1.0.0" to clipboard
version: ^1.0.0 copied to clipboard

outdatedDart 1 only

Provides a simple class for parsing and comparing semantic versions as defined by http://semver.org/

example/version_example.dart

// Copyright (c) 2017, Matthew Barbour. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'package:version/version.dart';

main() {
  Version currentVersion = new Version(1,0,3);
  Version latestVersion = Version.parse("2.1.0");

  if(latestVersion>currentVersion) {
    print("Update is available");
  }
}
231
likes
0
pub points
99%
popularity

Publisher

verified publisherdart.ninja

Provides a simple class for parsing and comparing semantic versions as defined by http://semver.org/

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on version