My `go.mod` file looks like 
```
module school 
go 1.13 
replace sample.com/math => ../math
```

When I run `go run school.go` the `go.mod` file changes to:
```
module school 
go 1.13 
replace sample.com/math => ../math 
require sample.com/math v0.0.0-00010101000000-000000000000 // indirect
````
My question is 

1. where does the package gets this version number (in this case 
v0.0.0-00010101000000-000000000000)? 

2. How to set the version number

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/82971560-1e68-4252-aeaf-30c9238b31a8n%40googlegroups.com.

Reply via email to