File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
Newest updates are at the top of this file.
3
3
4
- ## May 17 2020 - v5.0.0-beta
4
+ ## June 1 2020 - v5.0.0
5
5
* Migration for Go modules (requires new major number) (#138 )
6
6
* ibmmq - Add all string mapping functions from cmqstrc (#142 )
7
7
* ibmmq - Add AIX platform header
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ For example,
120
120
```
121
121
122
122
* Compile the ` ibmmq ` component:
123
- *
123
+ *
124
124
` go install ./src/github.com/ibm-messaging/mq-golang/ibmmq `
125
125
126
126
* If you plan to use monitoring functions, then compile the ` mqmetric ` component:
@@ -148,6 +148,29 @@ Support for modules started to be introduced around Go 1.11 and has been firmed
148
148
modification level updates in each of the compiler levels since then. The module changes for this
149
149
package were developed and tested with Go 1.13.6.
150
150
151
+ To use the MQ module in your application, your ` go.mod ` file contains
152
+
153
+ ```
154
+ require (
155
+ github.com/ibm-messaging/mq-golang/v5 v5.0.0
156
+ )
157
+ ```
158
+
159
+ and your application code will include
160
+
161
+ ```
162
+ import ibmmq "github.com/ibm-messaging/mq-golang/v5/ibmmq"
163
+ ```
164
+
165
+ If you have not moved to using modules in your application, you should continue using the older levels
166
+ of these packages. For example, you can continue to use ` dep ` with ` Gopkg.toml ` referring to
167
+
168
+ ```
169
+ [[constraint]]
170
+ name = "github.com/ibm-messaging/mq-golang"
171
+ version = "4.1.4"
172
+ ```
173
+
151
174
## Related Projects
152
175
153
176
These GitHub-hosted projects are related to or derived from this one. This is not a complete list. Please
You can’t perform that action at this time.
0 commit comments